Created
August 16, 2021 01:50
-
-
Save dpw1/e48385c60ca48b5377dfed1819b66b8e to your computer and use it in GitHub Desktop.
Remove blue box from clickable elements (Shopify)
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
<style> | |
button, | |
textarea, | |
input, | |
select, | |
a { | |
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); | |
-webkit-tap-highlight-color: transparent; | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment