mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
45 lines
559 B
CSS
45 lines
559 B
CSS
.cell {
|
|
align-items: center;
|
|
}
|
|
|
|
.row .cell:last-child {
|
|
gap: 10px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.label {
|
|
display: none;
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media screen and (max-width: 992px) {
|
|
.header .cell {
|
|
display: none;
|
|
}
|
|
|
|
.label {
|
|
display: block;
|
|
min-width: 100px;
|
|
}
|
|
|
|
.row .cell {
|
|
padding-left: 0;
|
|
flex-basis: 100%;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
.row {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.header .cell:last-child {
|
|
display: none;
|
|
}
|
|
|
|
.row .cell:last-child {
|
|
padding-left: 0;
|
|
flex-basis: 100%;
|
|
}
|
|
}
|