fix: Move size mixin to mixin.scss file

This commit is contained in:
Suraj Shetty 2020-09-02 11:48:06 +05:30
parent 318c80de68
commit 7d3c833362
2 changed files with 5 additions and 5 deletions

View file

@ -15,4 +15,9 @@
box-shadow: $shadow;
padding: $padding;
background-color: $background-color;
}
@mixin size($w, $h) {
width: $w;
height: $h;
}

View file

@ -1,8 +1,3 @@
@mixin size($w, $h) {
width: $w;
height: $h;
}
.navbar {
perspective: 3200px;
}