mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
39 lines
655 B
SCSS
39 lines
655 B
SCSS
@import '../constants/dimensions';
|
|
@import '../constants/colors';
|
|
|
|
#sidebar {
|
|
height: 100%;
|
|
|
|
.pane__body {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
a {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
}
|
|
|
|
ul.sidebar-items {
|
|
width: $sidebar-width;
|
|
|
|
li.sidebar-item > a {
|
|
color: darken($font-dark-bg, 40%);
|
|
padding: $sidebar-item-padding;
|
|
border-left: 4px solid transparent;
|
|
|
|
&:hover {
|
|
background: lighten($bg-dark, 2%);
|
|
}
|
|
|
|
&:active {
|
|
background: lighten($bg-dark, 4%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar-items li.sidebar-item.active > a {
|
|
border-left-color: $bg-primary;
|
|
color: $font-dark-bg;
|
|
}
|
|
}
|