mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
22 lines
293 B
CSS
22 lines
293 B
CSS
|
.column {
|
||
|
padding: 20px;
|
||
|
border-top: 1px solid var(--base200);
|
||
|
border-left: 1px solid var(--base200);
|
||
|
}
|
||
|
|
||
|
.column:first-child {
|
||
|
padding-left: 0;
|
||
|
border-left: 0;
|
||
|
}
|
||
|
|
||
|
.column:last-child {
|
||
|
padding-right: 0;
|
||
|
}
|
||
|
|
||
|
.column.xs,
|
||
|
.column.sm,
|
||
|
.column.md {
|
||
|
border-left: 0;
|
||
|
border-right: 0;
|
||
|
}
|