1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 18:06:38 -04:00

set -webkit-text-size-adjust (fixes #18)

This commit is contained in:
2019-12-11 08:23:31 -05:00
parent 192822f113
commit 1d7ad74da9

View File

@ -41,5 +41,10 @@ a {
padding-bottom: 45px !important;
// Allows you to scroll below the viewport; default value is visible
overflow-y: scroll;
// Fix weird font size behavior on iOS Safari: https://github.com/jakejarvis/jarv.is/issues/18
// https://stackoverflow.com/questions/3226001/some-font-sizes-rendered-larger-on-safari-iphone
// https://www.456bereastreet.com/archive/201011/beware_of_-webkit-text-size-adjustnone/
-webkit-text-size-adjust: 100%;
}
}