Created
March 17, 2017 10:56
-
-
Save AlekseyDevksh/c1e3c6d01bf796a1f7047441927c437c to your computer and use it in GitHub Desktop.
Hacks for webkit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Prevent font scaling in landscape while allowing user zoom */ | |
-webkit-text-size-adjust: 100%; | |
/* Remove tap highlight */ | |
input, | |
textarea, | |
button, | |
select, | |
label, | |
a { | |
-webkit-tap-highlight-color: rgba(0,0,0,0); | |
-webkit-tap-highlight-color: transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment