mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2024-11-16 08:53:15 +00:00
11 lines
147 B
SCSS
Executable file
11 lines
147 B
SCSS
Executable file
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height) {
|
|
width: $width;
|
|
height: $height;
|
|
}
|
|
|
|
@mixin square($size) {
|
|
@include size($size, $size);
|
|
}
|