umami/components/common/MenuButton.module.css

25 lines
305 B
CSS
Raw Normal View History

2020-09-07 10:22:16 +02:00
.container {
display: flex;
position: relative;
cursor: pointer;
}
2020-09-22 06:34:55 +02:00
.button {
border: 1px solid transparent;
border-radius: 4px;
}
.menu {
z-index: 100;
}
.text {
font-size: var(--font-size-small);
}
2020-09-20 12:28:05 +02:00
2020-09-22 06:34:55 +02:00
.open,
2020-09-20 12:28:05 +02:00
.open:hover {
2020-09-22 06:34:55 +02:00
background: var(--gray50);
border: 1px solid var(--gray500);
2020-09-20 12:28:05 +02:00
}