umami/components/metrics/QuickButtons.module.css

34 lines
463 B
CSS
Raw Normal View History

2020-07-30 08:08:21 +00:00
.buttons {
display: flex;
2020-08-09 10:04:48 +00:00
align-content: center;
2020-07-31 03:11:43 +00:00
position: absolute;
top: 0;
right: 0;
margin: auto;
2020-07-30 08:08:21 +00:00
}
.buttons button + button {
margin-left: 10px;
2020-07-30 08:08:21 +00:00
}
2020-08-09 10:04:48 +00:00
.buttons .button {
2020-08-06 02:04:02 +00:00
font-size: var(--font-size-xsmall);
padding: 4px 8px;
}
2020-07-30 08:08:21 +00:00
.active {
font-weight: 600;
}
2020-08-18 07:51:32 +00:00
@media only screen and (max-width: 768px) {
.buttons button:last-child {
display: none;
}
}
2020-08-17 23:46:13 +00:00
@media only screen and (max-width: 576px) {
.buttons {
display: none;
}
}