Skip to content

Commit

Permalink
stupid esoteric keyboard focus states fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
timcowlishaw committed Oct 29, 2024
1 parent e8e4098 commit 51d955b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/assets/stylesheets/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@ body{
background-color: $white;
border: 3px solid $black;
}
&:hover, &:active, &:focus {
background-color: $primary;
color: $black;
&:hover, &:active, &:focus, &:focus-visible {
background-color: $primary !important;
color: $black !important;
border: 3px solid $black !important;
outline: none !important;
box-shadow: none !important;
}
}

Expand Down

0 comments on commit 51d955b

Please sign in to comment.