refactor(prettier): add formater prettier code

This commit is contained in:
2022-03-17 01:11:10 +01:00
parent 5c56b266a6
commit 077845e05c
14 changed files with 261 additions and 251 deletions

View File

@ -1,10 +1,10 @@
$colors: (
primary: (
400: #fff,
600: #d9d9d9,
600: #d9d9d9
),
secondary: (
400: #000,
600: #272727,
),
600: #272727
)
);

View File

@ -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;

View File

@ -2,5 +2,5 @@ $default-transition: 0.3s ease;
$breakpoints: (
small: 320px,
medium: 768px,
large: 1024px,
large: 1024px
) !default;