Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Mark Otto
5f9a85486c Remove tap highlight 2021-01-13 19:13:03 -08:00

View file

@ -41,7 +41,6 @@
// 1. Remove the margin in all browsers. // 1. Remove the margin in all browsers.
// 2. As a best practice, apply a default `background-color`. // 2. As a best practice, apply a default `background-color`.
// 3. Prevent adjustments of font size after orientation changes in iOS. // 3. Prevent adjustments of font size after orientation changes in iOS.
// 4. Change the default tap highlight to be completely transparent in iOS.
body { body {
margin: 0; // 1 margin: 0; // 1
@ -53,7 +52,6 @@ body {
text-align: $body-text-align; text-align: $body-text-align;
background-color: $body-bg; // 2 background-color: $body-bg; // 2
-webkit-text-size-adjust: 100%; // 3 -webkit-text-size-adjust: 100%; // 3
-webkit-tap-highlight-color: rgba($black, 0); // 4
} }