diff options
Diffstat (limited to 'ui/styles/textarea.css')
| -rw-r--r-- | ui/styles/textarea.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/styles/textarea.css b/ui/styles/textarea.css index 595826a..edf8ced 100644 --- a/ui/styles/textarea.css +++ b/ui/styles/textarea.css @@ -18,6 +18,7 @@ flex-grow: 1; background-color: var(--colour-input-bg); color: var(--colour-input-text); + font-family: "FiraCode"; } .create-message button { @@ -33,3 +34,12 @@ main { justify-content: flex-start; align-items: stretch; } + +/* Workaround for iOS zooming in on the textarea when it gets focus. */ +@media screen and (-webkit-min-device-pixel-ratio:0) { + select, + textarea, + input { + font-size: 16px; + } +} |
