UNPKG

911 BSCSSView Raw
1$menu-item-color: $color-tomato;
2$menu-item-hover-background-color: none;
3$menu-item-active-background-color: none;
4$menu-item-active-color: $color-dark-slate-gray;
5$menu-list-border-left: none;
6$menu-nested-list-margin: 0;
7$menu-nested-list-padding-left: 0;
8$menu-list-link-padding: 0.5rem 0;
9
10@import "bulma/sass/components/menu.sass";
11
12.sidebar-menu {
13 @extend .body-normal;
14 @extend .padding-top-normal;
15 @extend .padding-bottom-big;
16
17 font-weight: bold;
18 line-height: 1.5;
19 background-color: $color-lighter-gray;
20
21 .menu-list .link {
22 text-decoration: none;
23 @extend .is-paddingless;
24 @extend .padding-top-small;
25 @extend .padding-horizontal-big;
26 }
27
28 .icon {
29 @extend .has-text-grey;
30 @extend .padding-right-small;
31
32 font-size: 0.375rem;
33 }
34
35 .divider {
36 @extend .margin-top-normal;
37 @extend .margin-bottom-small;
38
39 border-top: 0.1875rem solid $color-white;
40 }
41}