Skip to content

Commit

Permalink
fix color in announcement on light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
mashehu committed Feb 5, 2024
1 parent 47d3b4c commit 7a374af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/navbar/AnnouncementBanner.astro
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ const nextAnnouncement = sortedAnnouncements[0];
{
nextAnnouncement && (
<div class="announcement d-flex justify-content-center text-bg-success">
<div class="p-2 text-center">
<a class="" href={nextAnnouncement.slug}>
<div class="p-2 text-center ">
<a class="text-white" href={nextAnnouncement.slug}>
{nextAnnouncement.text}
</a>
</div>
Expand Down

0 comments on commit 7a374af

Please sign in to comment.