about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/components/status.scss
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-03-06 13:12:35 +0100
committerClaire <claire.github-309c@sitedethib.com>2021-03-06 14:51:53 +0100
commit318efa49de8d0b9615427c99ab07c591230dfd80 (patch)
tree04625e00a78b73247bea6374aebed696de9ce45b /app/javascript/flavours/glitch/styles/components/status.scss
parent454d036b747f9568e83fba020f999ddb2c736084 (diff)
Fix various CodeClimate warnings
Diffstat (limited to 'app/javascript/flavours/glitch/styles/components/status.scss')
-rw-r--r--app/javascript/flavours/glitch/styles/components/status.scss8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss
index d6fbfbaa4..4248657ad 100644
--- a/app/javascript/flavours/glitch/styles/components/status.scss
+++ b/app/javascript/flavours/glitch/styles/components/status.scss
@@ -209,7 +209,7 @@
   display: inline-block;
   border-radius: 2px;
   background: lighten($ui-base-color, 30%);
-  border: none;
+  border: 0;
   color: $inverted-text-color;
   font-weight: 500;
   font-size: 11px;
@@ -389,8 +389,10 @@
       &:after {
         content: "";
         position: absolute;
-        top: 0; bottom: 0;
-        left: 0; right: 0;
+        top: 0;
+        bottom: 0;
+        left: 0;
+        right: 0;
         background: linear-gradient(rgba($ui-base-color, 0), rgba($ui-base-color, 1));
         pointer-events: none;
       }