Skip to content

Commit

Permalink
enhance(a11y-nav): fix background and padding (#12121)
Browse files Browse the repository at this point in the history
Fix background and padding for a11y nav
  • Loading branch information
pepelsbey authored Nov 22, 2024
1 parent 986c406 commit 10a819c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/src/ui/molecules/a11y-nav/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ Keyboard & screen reader skip link menu
z-index: var(--z-index-a11y);

a {
background-color: rgba(255, 255, 255, 0.9);
background-color: var(--background-primary);
font-weight: var(--font-body-strong-weight);
left: 0;
padding: 0.5rem;
padding: 0.8rem;
position: absolute;
right: 0;
text-align: center;
@media (max-width: #{$screen-md - 1}) {
padding: 1.125rem;
}

&:hover,
&:focus {
Expand Down

0 comments on commit 10a819c

Please sign in to comment.