mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-27 21:00:12 +01:00
39 lines
445 B
CSS
39 lines
445 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);
|
|
}
|
|
|
|
.selected {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.popup {
|
|
display: flex;
|
|
}
|
|
|
|
.filter {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.dropdown {
|
|
min-width: 60px;
|
|
}
|