diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-02-08 23:44:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-08 23:44:01 +0100 |
commit | 90f04ea06425d5774c200818caf08219c172b6f8 (patch) | |
tree | bc11674fb63408d46dc36f1a7958f8483a741d66 /app/javascript | |
parent | 4599518266d956ee5bc274f05aed9ca8ca56f448 (diff) |
Fix unread indicator on announcements not being aligned with text in web UI (#13052)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index d90d9734d..653ad8188 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -6697,14 +6697,13 @@ noscript { &__unread { position: absolute; - top: 15px; - right: 15px; - display: inline-block; + top: 19px; + right: 19px; + display: block; background: $highlight-text-color; border-radius: 50%; width: 0.625rem; height: 0.625rem; - margin: 0 .15em; } } |