1
0
Fork 0
mirror of https://github.com/dillonzq/LoveIt.git synced 2025-04-05 13:40:59 +02:00

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
assets/css/_mixin
resources/_gen/assets/scss/css

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