umami/components/metrics/MetricsTable.module.css

20 lines
299 B
CSS
Raw Normal View History

2020-08-01 04:05:14 +02:00
.container {
position: relative;
2020-09-26 08:38:28 +02:00
min-height: 430px;
height: 100%;
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-small);
2020-08-05 07:45:05 +02:00
display: flex;
flex-direction: column;
2020-08-01 05:37:29 +02:00
}
2020-08-09 12:04:48 +02:00
.footer {
display: flex;
justify-content: center;
}
2020-08-06 04:04:02 +02:00
@media only screen and (max-width: 992px) {
.container {
min-height: auto;
}
}