Files
website/static/static/css/layout.scss
2025-05-22 18:08:15 +02:00

10 lines
199 B
SCSS

.columns {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: space-evenly;
}
@mixin light-hr($height: .5px, $color: oklch(75% 0 0deg)) {
border: $height solid $color;
}