10 lines
199 B
SCSS
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;
|
|
} |