Bump textarea font size on mobile

As of eae2254, zooming is enabled in mobile. Unfortunately, iOS zoomns in on textareas and inputs with font sizes below 16px. This bumps font size for textareas (i.e. composer) but not yet for inputs.
This commit is contained in:
Penar Musaraj 2019-04-11 00:03:29 -04:00
parent 9291ffaac0
commit 723feea832
1 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,13 @@ textarea {
background-color: $secondary;
}
textarea {
// this increases font size to above 16px
// which is the threshold on iOS to trigger zooming
// when focusing on a textarea
font-size: $font-up-1;
}
blockquote {
/* 13px left is intentional here to properly align with post quotes */
padding: 10px 8px 10px 13px;