feat: copy style for new project | have error

This commit is contained in:
kmacoders
2021-07-12 00:40:19 +07:00
parent 4c2b64879b
commit ae45ae3cf5
20 changed files with 1160 additions and 17 deletions

View 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;
}