umami/src/components/metrics/MetricsTable.module.css
2023-12-10 02:02:24 -08:00

39 lines
498 B
CSS

.container {
position: relative;
min-height: 430px;
display: flex;
flex-direction: column;
flex: 1;
}
.actions {
display: flex;
gap: 20px;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
.footer {
display: flex;
justify-content: center;
}
.search {
max-width: 300px;
}
@media only screen and (max-width: 992px) {
.container {
min-height: auto;
}
.actions {
flex-direction: column;
}
.search {
max-width: 100%;
}
}