Browse Source

Fix trending counter width (#11569)

Trending counter used to be constant 100px in width, which caused
issues in languages like Russian, where because of that, "talking"
text was cut to the size where actual count is not visible at all:

> 6 people talking
> Популярно у...
master
Sasha Sorokin 5 years ago
committed by Eugen Rochko
parent
commit
a5a5a0adec
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/styles/mastodon/components.scss

+ 1
- 1
app/javascript/styles/mastodon/components.scss View File

@ -6059,12 +6059,12 @@ noscript {
&__current { &__current {
flex: 0 0 auto; flex: 0 0 auto;
width: 100px;
font-size: 24px; font-size: 24px;
line-height: 36px; line-height: 36px;
font-weight: 500; font-weight: 500;
text-align: right; text-align: right;
padding-right: 15px; padding-right: 15px;
margin-left: 5px;
color: $secondary-text-color; color: $secondary-text-color;
} }

Loading…
Cancel
Save