fix: Prevent adjustments of font size after orientation changes in iOS (#1285)

The font size in the code block may be larger.
As shown below, the Reset CSS specifies `text-size-adjust: 100%`.
fc091cce15/normalize.css (L13)
092d0d8592/sanitize.css (L43)
This commit is contained in:
Hiroshi Shimoju 2023-08-12 16:56:08 +09:00 committed by GitHub
parent f7bd1ec07c
commit eab731707a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,8 @@
html {
-webkit-tap-highlight-color: transparent;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}
a,