Skip to content

Commit

Permalink
Mobile menu should not be bold (#63)
Browse files Browse the repository at this point in the history
# Problem

Remove bold from mobile menu styles
  • Loading branch information
wilwade authored Nov 18, 2024
1 parent 07c8420 commit caf0f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/features/NavMenuMobile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<a
href={item.href}
target={item.isExternal ? '_blank' : '_self'}
class={`h4 underline-on-hover font-bold after:bg-current`}
class={`h4 underline-on-hover after:bg-current`}
on:click={() => (item.isExternal ? null : (isOpen = false))}
>
{item.label}
Expand Down

0 comments on commit caf0f55

Please sign in to comment.