1
0
mirror of https://github.com/flarum/core.git synced 2025-08-11 10:55:47 +02:00

chore: remove unneeded CSS vendor prefixes

This commit is contained in:
David Wheatley
2021-12-24 13:47:18 +01:00
parent dc661bf144
commit ec0c233d15
7 changed files with 46 additions and 53 deletions

View File

@@ -107,25 +107,15 @@
}
.animated {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
animation-delay: 1.7s;
-webkit-animation-delay: 1.7s;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}
@keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}