This commit is contained in:
Andras Schmelczer 2026-05-28 21:24:47 +01:00
parent 3ad2766f82
commit f74ee43cb4
196 changed files with 18949 additions and 32173 deletions

View file

@ -1,9 +1,4 @@
@mixin inner-spacing($spacing, $horizontal: false) {
& > *:not(:last-child) {
@if $horizontal {
margin-right: $spacing;
} @else {
margin-bottom: $spacing;
}
}
@mixin square($size) {
width: $size;
height: $size;
}

View file

@ -1,4 +1,9 @@
@mixin square($size) {
width: $size;
height: $size;
@mixin inner-spacing($spacing, $horizontal: false) {
& > *:not(:last-child) {
@if $horizontal {
margin-right: $spacing;
} @else {
margin-bottom: $spacing;
}
}
}