react-toolbox/docs/app/components/layout/main/components/navigation.scss

41 lines
686 B
SCSS
Raw Normal View History

2015-10-30 22:30:56 +03:00
@import "../config";
.root {
display: flex;
width: $navigation-width;
flex-direction: column;
background-color: $color-background;
}
.list {
@include no-webkit-scrollbar;
2015-10-30 22:30:56 +03:00
flex-grow: 1;
overflow-y: auto;
}
.item {
2016-04-10 12:38:42 +03:00
> span{
padding: $navigation-v-padding $navigation-h-padding;
}
2016-04-10 12:38:42 +03:00
[data-react-toolbox="list-item-text"] {
2015-10-30 22:30:56 +03:00
font-size: $font-size-small;
font-weight: $font-weight-semi-bold;
}
}
.active {
background: $color-divider;
}
.footer {
flex-grow: 0;
padding: $navigation-h-padding;
overflow: hidden;
2015-11-02 19:48:42 +03:00
font-size: $font-size-small;
2015-10-30 22:30:56 +03:00
color: $color-text-secondary;
border-top: $navigation-footer-border;
2015-11-02 19:48:42 +03:00
> * {
2015-10-30 22:30:56 +03:00
display: block;
}
}