mirror of
https://github.com/docmost/docmost.git
synced 2026-05-06 22:03:06 +08:00
22 lines
380 B
CSS
22 lines
380 B
CSS
.menuBtn {
|
|
&:hover {
|
|
@mixin light {
|
|
background: var(--mantine-color-gray-2);
|
|
}
|
|
|
|
@mixin dark {
|
|
background: var(--mantine-color-gray-light);
|
|
}
|
|
}
|
|
}
|
|
|
|
.selectedItem {
|
|
@mixin light {
|
|
background: var(--mantine-color-gray-2);
|
|
}
|
|
|
|
@mixin dark {
|
|
background: var(--mantine-color-gray-light);
|
|
}
|
|
}
|