Make it easier to see which tab is selected in the sidebar
This commit is contained in:
parent
a29a92bc21
commit
95426cfff4
|
@ -181,11 +181,20 @@ $sidebar-color: #1B1C1D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-area {
|
.menu-area {
|
||||||
padding: 0.5rem;
|
|
||||||
.menu .item:not(.active):not(:hover) {
|
.menu .item:not(.active):not(:hover) {
|
||||||
background-color: rgba(255, 255, 255, 0.06);
|
background-color: rgba(255, 255, 255, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu .item {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu .item.active {
|
||||||
|
background-color: $sidebar-color;
|
||||||
|
&:hover {
|
||||||
|
background-color: $sidebar-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.tabs {
|
.tabs {
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
|
Loading…
Reference in New Issue