fix: Move size mixin to mixin.scss file
This commit is contained in:
parent
318c80de68
commit
7d3c833362
2 changed files with 5 additions and 5 deletions
|
|
@ -15,4 +15,9 @@
|
|||
box-shadow: $shadow;
|
||||
padding: $padding;
|
||||
background-color: $background-color;
|
||||
}
|
||||
|
||||
@mixin size($w, $h) {
|
||||
width: $w;
|
||||
height: $h;
|
||||
}
|
||||
|
|
@ -1,8 +1,3 @@
|
|||
@mixin size($w, $h) {
|
||||
width: $w;
|
||||
height: $h;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
perspective: 3200px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue