Skip to content

Commit

Permalink
Fix up cards in project
Browse files Browse the repository at this point in the history
  • Loading branch information
annechoww committed Sep 19, 2024
1 parent 17b1c61 commit 9d1844e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions assets/js/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ const projects = [
function generateProjectHTML(project) {
const accomplishmentsList = project.accomplishments.map(acc => `<li>${acc}</li>`).join("");
return `
<div class="col s12 m6 l4">
<div class="card medium">
<div class="col s12">
<div class="card large">
<div class="card-image waves-effect waves-block waves-light">
<img alt="${project.title}" src="${project.imgSrc}" style="height: 100%; width: 100%" class="activator" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ <h3 class="page-title white-text teal">Experience</h3>
<!-- Fourth Section: Projects -->
<section id="projects" class="section scrollspy">
<h3 class="page-title white-text teal">Projects</h3>
<div class="container">
<div class="container" style="text-align: center;">
<div id="recent-projects" class="row"></div>
<button id="load-more" class="btn waves-effect waves-light teal">Load More</button>
</div>
Expand Down

0 comments on commit 9d1844e

Please sign in to comment.