Unprefix -webkit-appearance (#270)

`-webkit-appearance` should be unprefixed [1].

Autoprefixer will add in the necessary vendor prefixes on build.

[1]: https://developer.mozilla.org/en-US/docs/Web/CSS/appearance
This commit is contained in:
Tan Zhen Yong 2022-01-21 05:09:33 +08:00 committed by GitHub
parent 059b290e2b
commit af68904f68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
"water.css": patch
---
Unprefix `-webkit-appearance`

View file

@ -82,7 +82,7 @@ input[type='range'],
select,
button,
textarea {
-webkit-appearance: none;
appearance: none;
}
textarea {

View file

@ -22,7 +22,7 @@ input[type='range']::-webkit-slider-thumb {
width: 20px;
border-radius: 50%;
background: var(--border);
-webkit-appearance: none;
appearance: none;
margin-top: -7px;
}