Skip to content

Commit

Permalink
fix: empty tags style
Browse files Browse the repository at this point in the history
  • Loading branch information
colmugx committed Sep 9, 2024
1 parent 3df3335 commit 77ad1d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component/Tags.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { list = [] } = Astro.props
---

{
list.length && (
list.length ? (
<div class="opacity-35 hover:opacity-100 transition-opacity">
<div class="mb-2 mt-4 border-b border-gray-200" />
<div class="w-fit flex gap-x-1 text-sm">
Expand All @@ -22,5 +22,5 @@ const { list = [] } = Astro.props
))}
</div>
</div>
)
) : null
}

0 comments on commit 77ad1d8

Please sign in to comment.