mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-02 22:14:43 +01:00
21 lines
277 B
CSS
21 lines
277 B
CSS
.menu {
|
|
width: 360px;
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.item:hover {
|
|
background: var(--base75);
|
|
}
|
|
|
|
.type {
|
|
color: var(--font-color300);
|
|
}
|