Skip to content

Commit

Permalink
Improve styling of sidebar (#17072)
Browse files Browse the repository at this point in the history
  • Loading branch information
timroes committed Sep 26, 2022
1 parent e3553fe commit 871929d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@ $sidebar-workspace-font-weight: 400;
text-overflow: ellipsis;
text-align: center;
outline: none;

&:focus-visible {
outline: 1px solid colors.$white;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@
background-color: colors.$dark-blue-600;
}

&:hover:not(.open) {
&:focus-visible {
outline: 1px solid colors.$white;
}

&:hover:not(.open),
&:focus-visible:not(.open) {
background-color: colors.$dark-blue-800;
}
}
Expand Down Expand Up @@ -71,7 +76,7 @@
}

&.active {
background-color: colors.$grey-50;
background-color: colors.$grey-100;
}
}
}

0 comments on commit 871929d

Please sign in to comment.