diff options
author | silverwind <me@silverwind.io> | 2020-05-20 06:06:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 00:06:04 -0400 |
commit | 9e0e2a9fcfae4336958dc3e93d4beacfc7a2f642 (patch) | |
tree | 82dc24db537d4f1c9c9d423add94f00c25be467e /web_src/less/_base.less | |
parent | 34e6a4e05734a642883037ba1a9f78750c1a0583 (diff) | |
download | gitea-9e0e2a9fcfae4336958dc3e93d4beacfc7a2f642.tar.gz gitea-9e0e2a9fcfae4336958dc3e93d4beacfc7a2f642.zip |
Enable stylelint's shorthand-property-no-redundant-values (#11436)
Enabled the rule and --fix'ed issues.
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src/less/_base.less')
-rw-r--r-- | web_src/less/_base.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/less/_base.less b/web_src/less/_base.less index 03dc61a987..962bd03b2d 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -323,7 +323,7 @@ code, &.container { &.fluid { &.padded { - padding: 0 10px 0 10px; + padding: 0 10px; } } } @@ -582,7 +582,7 @@ code, .sha.label { font-family: @monospaced-fonts, monospace; font-size: 13px; - padding: 6px 10px 4px 10px; + padding: 6px 10px 4px; font-weight: normal; margin: 0 6px; } |