feat: rm useless compatibility style

This commit is contained in:
Dillon 2022-06-29 22:21:26 +08:00
parent b81fed5c02
commit 48a3942536
No known key found for this signature in database
GPG key ID: 0EF4AE57FB98F108
2 changed files with 2 additions and 5 deletions

View file

@ -18,7 +18,6 @@
@mixin transform($value) {
-webkit-transform: $value;
-moz-transform: $value;
-ms-transform: $value;
-o-transform: $value;
transform: $value;
@ -26,8 +25,6 @@
@mixin filter($value) {
-webkit-filter: $value;
-moz-filter: $value;
-ms-filter: $value;
filter: $value;
}
@ -82,8 +79,8 @@
}
@mixin appearance($value) {
-moz-appearance: $value;
-webkit-appearance: $value;
-moz-appearance: $value;
}
@mixin overflow-wrap($value) {

File diff suppressed because one or more lines are too long