mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2025-03-01 12:38:02 +00:00
10 lines
147 B
SCSS
Executable file
10 lines
147 B
SCSS
Executable file
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height) {
|
|
width: $width;
|
|
height: $height;
|
|
}
|
|
|
|
@mixin square($size) {
|
|
@include size($size, $size);
|
|
}
|