diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-06-04 21:52:02 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-04 14:52:02 +0200 |
commit | f6e2309e70f7df49e30fee2820da8a3fd698be7a (patch) | |
tree | e7be2cd9651947e3da3726fbd29227ee4a298aa0 /app/javascript/styles | |
parent | 9d2154c4ab9d9d6c73d80962e2d189e20b88acbb (diff) |
Fix column buttons overflow in Japanese (#3552)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/components.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index b4e980f1a..7f2b5cfe0 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -1534,7 +1534,7 @@ cursor: pointer; flex: 0 0 auto; font-size: 16px; - padding: 15px; + padding: 0 15px; z-index: 3; &:hover { @@ -2050,6 +2050,7 @@ button.icon-button.active i.fa-retweet { position: absolute; right: 0; top: 0; + height: 100%; display: flex; } @@ -2059,7 +2060,7 @@ button.icon-button.active i.fa-retweet { color: $ui-primary-color; cursor: pointer; font-size: 16px; - padding: 15px; + padding: 0 15px; &:hover { color: lighten($ui-primary-color, 7%); |