umami/components/QuickButtons.module.css

27 lines
346 B
CSS
Raw Normal View History

2020-07-30 10:08:21 +02:00
.buttons {
display: flex;
2020-07-31 05:11:43 +02:00
position: absolute;
top: 0;
right: 0;
margin: auto;
2020-07-30 10:08:21 +02:00
}
.buttons button + button {
margin-left: 10px;
2020-07-30 10:08:21 +02:00
}
2020-08-06 04:04:02 +02:00
.button {
font-size: var(--font-size-xsmall);
padding: 4px 8px;
}
2020-07-30 10:08:21 +02:00
.active {
font-weight: 600;
}
@media only screen and (max-width: 720px) {
.buttons button:last-child {
display: none;
}
}