2023-02-15 02:23:20 +01:00
|
|
|
.col {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
border-top: 1px solid var(--base300);
|
|
|
|
min-height: 430px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row > .col {
|
2023-04-20 20:08:56 +02:00
|
|
|
border-inline-start: 1px solid var(--base300);
|
2023-02-15 02:23:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.row > .col:first-child {
|
2023-04-20 20:08:56 +02:00
|
|
|
border-inline-start: 0;
|
|
|
|
padding-inline-start: 0;
|
2023-02-15 02:23:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.row > .col:last-child {
|
2023-04-20 20:08:56 +02:00
|
|
|
padding-inline-end: 0;
|
2023-02-15 02:23:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
|
|
.row {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row > .col {
|
|
|
|
border-top: 1px solid var(--base300);
|
2023-04-20 20:08:56 +02:00
|
|
|
border-inline-end: 0;
|
2023-02-15 02:23:20 +01:00
|
|
|
padding: 20px 0;
|
|
|
|
}
|
|
|
|
}
|