14 lines
238 B
SCSS
14 lines
238 B
SCSS
#sidebar {
|
|
background-color: $sidebar-bg;
|
|
|
|
ul {
|
|
&.topics {
|
|
> li {
|
|
&.parent, &.active {
|
|
background: darken($sidebar-bg, 8%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|