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