UNPKG

765 BSCSSView Raw
1$gray-title: #8b8b90;
2$white: #fff;
3
4.menu-tree {
5 width: 100%;
6
7 &__item-wrap {
8 border-bottom: 1px solid $gray-title;
9
10 &:last-of-type {
11 border: 0;
12 }
13 }
14
15 &__item {
16 display: flex;
17 flex-direction: row;
18 align-items: flex-start;
19 justify-content: flex-start;
20 padding: 6px;
21 font-size: 14px;
22
23 &:hover,
24 &--select {
25 background: $gray-title;
26 color: $white;
27
28 .material-icons {
29 color: $white !important;
30 }
31 }
32
33 .material-icons {
34 position: relative;
35 top: -2px;
36 height: 10px !important;
37 min-height: 10px !important;
38 color: $gray-title !important;
39 }
40 }
41
42 &__item-child-wrap {
43 padding-left: 12px;
44 }
45
46 &__content-panel {
47 overflow: auto;
48 }
49}
\No newline at end of file