Skip to content

Commit

Permalink
Remove classes
Browse files Browse the repository at this point in the history
  • Loading branch information
adriandelgado committed Aug 4, 2024
1 parent e991a20 commit 9640e41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/ProjectCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<h2 class="font-fira text-xl font-medium text-white">{name}</h2>
</div>
<Tag {category} />
<p class="my-4 font-content text-[#dee5f2]">{description}</p>
<p class="my-4">{description}</p>
<div class="flex w-full flex-row justify-between">
<div class="flex flex-row items-center justify-center">
<!-- TODO: Implement author's avatars -->
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Tag.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</script>

<span
class="py rounded-full border border-lime-500 bg-neutral-800 px-6 font-fira font-bold text-white"
class="rounded-full border border-lime-500 bg-neutral-800 px-6 font-fira font-bold text-white"
>
{category}
</span>

0 comments on commit 9640e41

Please sign in to comment.