Skip to content

Commit

Permalink
Fix styles on Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
stefkn committed Aug 19, 2024
1 parent 1905a99 commit 467bcc7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/RecentPosts.astro
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ const allPosts = await getCollection("posts");
}
.post-details {
padding-left: 2rem;
a {
font-size: 1.2rem;
font-weight: 600;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
p {
margin-top: 0.2rem;
}
.post-details > a {
font-size: 1.2rem;
font-weight: 600;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
.post-details > p {
margin-top: 0.2rem;
}
</style>

0 comments on commit 467bcc7

Please sign in to comment.