diff options
author | ThibG <thib@sitedethib.com> | 2019-06-13 00:14:27 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-06-13 22:15:31 +0200 |
commit | 983cbd558d872d440d296bc101108fcb622cd8ea (patch) | |
tree | 73ab801287185db3689b805e56c608dc0c66d2a4 | |
parent | 0f41be5581b4980be2ae7334c169272912abf9a7 (diff) |
[Glitch] Fix border-bottom of active tab bars
Port faafc3ae25378121148356b60d1bef6f57013069 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/index.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/index.scss b/app/javascript/flavours/glitch/styles/components/index.scss index 4da61399e..9f96a3154 100644 --- a/app/javascript/flavours/glitch/styles/components/index.scss +++ b/app/javascript/flavours/glitch/styles/components/index.scss @@ -615,11 +615,6 @@ font-size: 16px; } - &.active { - border-bottom: 2px solid $ui-highlight-color; - color: $highlight-text-color; - } - &:hover, &:focus, &:active { @@ -629,6 +624,11 @@ } } + &.active { + border-bottom: 2px solid $ui-highlight-color; + color: $highlight-text-color; + } + span { margin-left: 5px; display: none; |