refactor(prettier): add formater prettier code
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
$colors: (
|
||||
primary: (
|
||||
400: #fff,
|
||||
600: #d9d9d9,
|
||||
600: #d9d9d9
|
||||
),
|
||||
secondary: (
|
||||
400: #000,
|
||||
600: #272727,
|
||||
),
|
||||
600: #272727
|
||||
)
|
||||
);
|
||||
|
@ -1,4 +1,4 @@
|
||||
@import "variables";
|
||||
@import 'variables';
|
||||
|
||||
@mixin display-flex($content: center, $items: center, $direction: row) {
|
||||
display: flex;
|
||||
@ -8,7 +8,7 @@
|
||||
}
|
||||
|
||||
@mixin element-invisible($enforce: true) {
|
||||
$important: if($enforce, "!important", null);
|
||||
$important: if($enforce, '!important', null);
|
||||
|
||||
max-height: 0 #{$important};
|
||||
opacity: 0 #{$important};
|
||||
@ -17,7 +17,7 @@
|
||||
}
|
||||
|
||||
@mixin element-invisible-off($value-visibility: 100px, $enforce: true) {
|
||||
$important: if($enforce, "!important", null);
|
||||
$important: if($enforce, '!important', null);
|
||||
|
||||
max-height: #{$value-visibility} #{$important};
|
||||
opacity: 1 #{$important};
|
||||
@ -25,7 +25,7 @@
|
||||
}
|
||||
|
||||
@mixin css-triangle($triangle-size, $triangle-color, $triangle-direction) {
|
||||
content: "";
|
||||
content: '';
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
|
@ -2,5 +2,5 @@ $default-transition: 0.3s ease;
|
||||
$breakpoints: (
|
||||
small: 320px,
|
||||
medium: 768px,
|
||||
large: 1024px,
|
||||
large: 1024px
|
||||
) !default;
|
||||
|
Reference in New Issue
Block a user