17 lines
224 B
SCSS
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;
|
|
}
|