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:
parent
17d1ed3716
commit
bbaa0ea1fa
|
@ -12,6 +12,7 @@ html {
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
background-color: var(--bg);
|
background-color: var(--bg);
|
||||||
text-size-adjust: none;
|
text-size-adjust: none;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
Loading…
Reference in New Issue