diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-12 14:37:51 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-12 14:37:51 +0500 |
commit | 98aba849291211d863a97d1e688688cd76e473bf (patch) | |
tree | 0cca60449f76a0e077af51e3281ca169c887645e | |
parent | add README.md (diff) | |
download | void-98aba849291211d863a97d1e688688cd76e473bf.tar.gz void-98aba849291211d863a97d1e688688cd76e473bf.zip |
index.html: disable font boosting on Android
-rw-r--r-- | index.html | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -28,6 +28,15 @@ html, body { content: '\200B'; visibility: hidden; } + +/* + * The fucking font boosting on Android's Chrome. + * This does seem to disable it, for God knows what reason: + * https://stackoverflow.com/a/16432702/514684 + */ +html * { + max-height: 1000000px; +} </style> </head> <body> |