diff options
author | Yuki Nakagawa <yukinari3po@gmail.com> | 2017-04-16 21:05:16 +0900 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-16 14:05:16 +0200 |
commit | a8f45c0838c35c51120e6e327457d5114f86a300 (patch) | |
tree | 7bccb457eb8c7381101e0802ca4b60c375d88d2d /app | |
parent | 6df63465b9b4ae409cad2303ec2476c6c479284c (diff) |
Enlarge font size to avoid autozooming of iPhone. (#1911)
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/components.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index d1c4d2bb2..8bd35819a 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -1203,6 +1203,10 @@ a.status__content__spoiler-link { &:focus { outline: 0; } + + @media screen and (max-width: 600px) { + font-size: 16px; + } } .spoiler-input__input { @@ -1267,6 +1271,10 @@ a.status__content__spoiler-link { color: $color5; border-bottom-color: $color4; } + + @media screen and (max-width: 600px) { + font-size: 16px; + } } @import 'boost'; @@ -1906,6 +1914,10 @@ button.icon-button.active i.fa-retweet { &:focus { background: lighten($color1, 4%); } + + @media screen and (max-width: 600px) { + font-size: 16px; + } } .search__icon { |