insomnia/app/css/components/sidebar.scss
Gregory Schier 7179c071d4 A bunch more
2016-03-20 22:47:49 -07:00

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;
}
}