mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
36 lines
491 B
CSS
36 lines
491 B
CSS
|
.col {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
border-top: 1px solid var(--base300);
|
||
|
min-height: 430px;
|
||
|
}
|
||
|
|
||
|
.row > .col {
|
||
|
border-left: 1px solid var(--base300);
|
||
|
}
|
||
|
|
||
|
.row > .col:first-child {
|
||
|
border-left: 0;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
.row > .col:last-child {
|
||
|
padding-right: 0;
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 992px) {
|
||
|
.row {
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
.row > .col {
|
||
|
border-top: 1px solid var(--base300);
|
||
|
border-left: 0;
|
||
|
padding: 20px 0;
|
||
|
}
|
||
|
}
|