umami/components/common/NavMenu.module.css

23 lines
310 B
CSS
Raw Normal View History

.menu {
2020-09-20 10:33:39 +02:00
color: var(--gray800);
border: 1px solid var(--gray500);
border-radius: 4px;
overflow: hidden;
z-index: 2;
}
.option {
padding: 8px 16px;
cursor: pointer;
border-radius: 4px;
}
.option:hover {
background: var(--gray75);
}
.selected {
2020-09-20 10:33:39 +02:00
color: var(--gray900);
font-weight: 600;
}