2021-07-12 00:40:19 +07:00

17 lines
224 B
SCSS

/*
* Set size for a element
*
* @param $width: width property
* @param $height: height property
*
* @example
* .foo {
* @include box(10px, 5px);
* }
*/
@mixin box($width, $height) {
height: $height;
width: $width;
}