mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
23 lines
310 B
CSS
23 lines
310 B
CSS
.menu {
|
|
color: var(--base800);
|
|
border: 1px solid var(--base500);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
z-index: 2;
|
|
}
|
|
|
|
.option {
|
|
padding: 8px 16px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.option:hover {
|
|
background: var(--base75);
|
|
}
|
|
|
|
.selected {
|
|
color: var(--base900);
|
|
font-weight: 600;
|
|
}
|