Files
SimpleWebConf.github.io/sass/bootstrap/mixins/_size.scss
Alex Korzhikov bf510f2ee3 initial commit
2021-02-14 17:00:38 +01:00

11 lines
147 B
SCSS

// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}