Skip to content

Commit

Permalink
Always show border when active for user login menu (#2428)
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenSandwich committed Apr 29, 2024
1 parent fee9783 commit 5a1bfd2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/navigation-header/navigation-header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@
background-color: transparent;
color: var(--token-color-foreground-high-contrast);

&:hover {
&:hover,
&[aria-expanded='true'] {
border-color: var(--token-color-palette-neutral-200);
}

Expand All @@ -120,7 +121,7 @@
@nest html[data-theme='dark'] & {
color: var(--token-color-foreground-strong);

&:hover {
&:hover, &[aria-expanded='true'] {
border-color: var(--token-color-border-strong);
}
}
Expand Down

0 comments on commit 5a1bfd2

Please sign in to comment.