SASS/SCSS Starter Kit
This mixin sets the width and height of an element to the specified size.
Shortcut: scss.mixin.square
@mixin square($size) {
width: $size;
height: $size;
}
This mixin sets the width and height of an element to the specified size.
Shortcut: scss.mixin.square
@mixin square($size) {
width: $size;
height: $size;
}