Prevent iOS Safari from enlarging text in landscape orientation

referernces:
  - https://developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust#basic_disabling_usage
  - https://trac.webkit.org/changeset/261940/webkit
This commit is contained in:
Ingu Kang 2021-11-13 15:37:15 +09:00
parent 17d1ed3716
commit bbaa0ea1fa
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ html {
color: var(--fg);
background-color: var(--bg);
text-size-adjust: none;
-webkit-text-size-adjust: none;
}
body {