diff options
| author | Serghei Iakovlev <egrep@protonmail.ch> | 2022-07-04 17:17:30 +0200 |
|---|---|---|
| committer | Serghei Iakovlev <egrep@protonmail.ch> | 2022-07-04 17:17:30 +0200 |
| commit | 6ac42272df15c45445426435bdc05060a01185d4 (patch) | |
| tree | 500aded7de06824a6a4bc7898a3948ce626be4fd /assets | |
| parent | f7665290b78f43d4666f2544d963775be39128b8 (diff) | |
| download | gohugo-theme-ed-6ac42272df15c45445426435bdc05060a01185d4.tar.gz | |
Fix appearance sass mixin
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/sass/_mixins.scss | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/assets/sass/_mixins.scss b/assets/sass/_mixins.scss index 3a17919..a51f90a 100644 --- a/assets/sass/_mixins.scss +++ b/assets/sass/_mixins.scss @@ -78,9 +78,9 @@ $break-desktop: 1600px; @mixin transition($args...) { -webkit-transition: $args; - -moz-transition: $args; + -moz-transition: $args; // editorconfig-checker-disable-line -ms-transition: $args; - -o-transition: $args; + -o-transition: $args; // editorconfig-checker-disable-line transition: $args; } @@ -91,9 +91,9 @@ $break-desktop: 1600px; // Usage: @include appearance(button); @mixin appearance($value) { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; + -webkit-appearance: $value; + -moz-appearance: $value; // editorconfig-checker-disable-line + appearance: $value; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Placeholder @@ -126,7 +126,7 @@ $break-desktop: 1600px; @mixin box-sizing ($value) { -webkit-box-sizing: $value; - -moz-box-sizing: $value; + -moz-box-sizing: $value; // editorconfig-checker-disable-line box-sizing: $value; } @@ -137,7 +137,7 @@ $break-desktop: 1600px; @mixin box-shadow ($args...) { -webkit-box-shadow: $args; - -moz-box-shadow: $args; + -moz-box-shadow: $args; // editorconfig-checker-disable-line box-shadow: $args; } @@ -148,7 +148,7 @@ $break-desktop: 1600px; @mixin border-radius ($args...) { -webkit-border-radius: $args; - -moz-border-radius: $args; + -moz-border-radius: $args; // editorconfig-checker-disable-line border-radius: $args; } |
