Skip to content

Commit

Permalink
add focus-visible
Browse files Browse the repository at this point in the history
  • Loading branch information
teallarson committed Jun 28, 2022
1 parent 4150bd5 commit f3d8ace
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions airbyte-webapp/src/views/layout/SideBar/SideBar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
text-decoration: none;
position: relative;

&:hover {
&:hover,
&:focus-visible {
background: #262963; //todo: update to use palette when palette up to date
transition: variables.$transition-out;
}
Expand All @@ -28,7 +29,8 @@
background: colors.$primaryColor;
transition: variables.$transition-out;

&:hover {
&:hover,
&:focus-visible {
color: colors.$whiteColor;
background: #7f7eff; //todo: update to use palette when palette up to date
transition: variables.$transition-out;
Expand All @@ -39,7 +41,8 @@
color: colors.$whiteColor;
background: #353b7b;

&:hover {
&:hover,
&:focus-visible {
color: colors.$whiteColor;
background: #565c94;
}
Expand Down

0 comments on commit f3d8ace

Please sign in to comment.