Skip to content

Commit

Permalink
Fix whitespace within empty project category containers
Browse files Browse the repository at this point in the history
This will allow us to target the empty project categories in CSS with
:empty.
  • Loading branch information
caleb531 committed Sep 14, 2024
1 parent 35d1976 commit 3996809
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/routes/projects/ProjectCategory.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@
<h3 class="entry-list-category-title" transition:projectFadeSlide|global>
{category.title}
</h3>
{#each sortedProjects as project (project.id)}
<Project {project} />
{/each}
{/if}

{#each sortedProjects as project (project.id)}
<Project {project} />
{/each}
</section>

0 comments on commit 3996809

Please sign in to comment.