diff options
author | ThibG <thib@sitedethib.com> | 2019-06-13 00:14:27 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-06-13 00:14:27 +0200 |
commit | faafc3ae25378121148356b60d1bef6f57013069 (patch) | |
tree | 01b47211a4e6426e10e2e76c59ebac00c6b4a6fc /app | |
parent | 809d1faa496b9e043cbca45bfe5b229974d030b3 (diff) |
Fix border-bottom of active tab bars (#11068)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 8ea9d6905..79dbb5c87 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -1965,11 +1965,6 @@ a.account__display-name { font-size: 16px; } - &.active { - border-bottom: 2px solid $highlight-text-color; - color: $highlight-text-color; - } - &:hover, &:focus, &:active { @@ -1979,6 +1974,11 @@ a.account__display-name { } } + &.active { + border-bottom: 2px solid $highlight-text-color; + color: $highlight-text-color; + } + span { margin-left: 5px; display: none; |