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:
parent
9291ffaac0
commit
723feea832
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue