Skip to content

Instantly share code, notes, and snippets.

@dpw1
Created August 16, 2021 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpw1/e48385c60ca48b5377dfed1819b66b8e to your computer and use it in GitHub Desktop.
Save dpw1/e48385c60ca48b5377dfed1819b66b8e to your computer and use it in GitHub Desktop.
Remove blue box from clickable elements (Shopify)
<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