Skip to content

Commit

Permalink
Prevent tags going off screen (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
drornir authored Aug 28, 2024
1 parent f20de17 commit 764fa0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/blog/BlogSummaryCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const { post } = Astro.props;
<div class='hidden sm:inline-block'>
<p class='poppins mt-2'>tags:</p>
<div class='flex justify-between items-center'>
<ul class='flex gap-4 mt-2'>
<ul class='flex flex-wrap gap-4 mt-2'>
{
post.data.tags.map((tag) => {
return (
Expand Down

0 comments on commit 764fa0d

Please sign in to comment.