Skip to content

Commit

Permalink
Merge pull request #139 from sbondCo/nav-menu-fixes
Browse files Browse the repository at this point in the history
Nav menu dark theme fixes
  • Loading branch information
IRHM authored Sep 24, 2023
2 parents 93ebc03 + 828f6f3 commit fd726c4
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/routes/(app)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@
&:focus-visible {
:global(path) {
fill: none;
stroke: black;
stroke: $text-color;
stroke-width: 30px;
stroke-linejoin: round;
}
Expand Down Expand Up @@ -454,8 +454,8 @@
&:hover,
&:focus-visible {
color: white;
-webkit-text-stroke: 1.5px black;
color: $bg-color;
-webkit-text-stroke: 1.5px $text-color;
}
}
Expand Down Expand Up @@ -487,9 +487,10 @@
cursor: pointer;
transition: background-color 200ms ease;
&:hover {
background-color: rgba(0, 0, 0, 1);
color: white;
&:hover,
&:focus-visible {
background-color: $text-color;
color: $bg-color;
}
}
Expand Down

0 comments on commit fd726c4

Please sign in to comment.