feat: copy style for new project | have error
This commit is contained in:
16
assets/styles/utils/mixins/_size.scss
Normal file
16
assets/styles/utils/mixins/_size.scss
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
/*
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user