diff options
| author | Serghei Iakovlev <egrep@protonmail.ch> | 2022-05-11 22:33:00 +0200 |
|---|---|---|
| committer | Serghei Iakovlev <egrep@protonmail.ch> | 2022-05-11 22:33:00 +0200 |
| commit | c2c78c90f10485e89e52520951340ba9a1558408 (patch) | |
| tree | bd8ffc41c602bb18b0bd4cc4a959967500f936f6 /assets | |
| parent | c3cc89ba657add7831e457b4e1ad26d69f6e5de4 (diff) | |
| download | gohugo-theme-ed-c2c78c90f10485e89e52520951340ba9a1558408.tar.gz | |
Correct code style
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/sass/_mixins.scss | 12 | ||||
| -rw-r--r-- | assets/sass/_syntax.scss | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/assets/sass/_mixins.scss b/assets/sass/_mixins.scss index a373209..6261654 100644 --- a/assets/sass/_mixins.scss +++ b/assets/sass/_mixins.scss @@ -45,9 +45,9 @@ $break-desktop: 1600px; @mixin transition($args...) { -webkit-transition: $args; - -moz-transition: $args; + -moz-transition: $args; -ms-transition: $args; - -o-transition: $args; + -o-transition: $args; transition: $args; } @@ -59,7 +59,7 @@ $break-desktop: 1600px; @mixin appearance($value) { -webkit-appearance: none; - -moz-appearance: none; + -moz-appearance: none; appearance: none; } @@ -93,7 +93,7 @@ $break-desktop: 1600px; @mixin box-sizing ($value) { -webkit-box-sizing: $value; - -moz-box-sizing: $value; + -moz-box-sizing: $value; box-sizing: $value; } @@ -104,7 +104,7 @@ $break-desktop: 1600px; @mixin box-shadow ($args...) { -webkit-box-shadow: $args; - -moz-box-shadow: $args; + -moz-box-shadow: $args; box-shadow: $args; } @@ -115,7 +115,7 @@ $break-desktop: 1600px; @mixin border-radius ($args...) { -webkit-border-radius: $args; - -moz-border-radius: $args; + -moz-border-radius: $args; border-radius: $args; } diff --git a/assets/sass/_syntax.scss b/assets/sass/_syntax.scss index 7d208e6..05a61c7 100644 --- a/assets/sass/_syntax.scss +++ b/assets/sass/_syntax.scss @@ -34,9 +34,9 @@ pre code { /* Pygments via Hugo */ .highlight { - margin-bottom: 1rem; - border-radius: 4px; + margin-bottom: 1rem; + border-radius: 4px; } .highlight pre { - margin-bottom: 0; + margin-bottom: 0; } |
