Skip to content

Commit 4a44601

Browse files
committed
remove the prefers no motion bit
1 parent 3996751 commit 4a44601

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

animate.css

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,20 +94,19 @@
9494
-webkit-animation-duration: calc(var(--animate-duration) * 3);
9595
animation-duration: calc(var(--animate-duration) * 3);
9696
}
97+
/*
9798
@media print, (prefers-reduced-motion: reduce) {
98-
.animate__animated {
99-
-webkit-animation-duration: 1ms !important;
99+
.animated {
100100
animation-duration: 1ms !important;
101-
-webkit-transition-duration: 1ms !important;
102101
transition-duration: 1ms !important;
103-
-webkit-animation-iteration-count: 1 !important;
104102
animation-iteration-count: 1 !important;
105103
}
106104
107-
.animate__animated[class*='Out'] {
105+
.animated[class*='Out'] {
108106
opacity: 0;
109107
}
110108
}
109+
*/
111110
/* Attention seekers */
112111
@-webkit-keyframes bounce {
113112
from,

animate.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/_base.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
.animated.slower {
5555
animation-duration: calc(var(--animate-duration) * 3);
5656
}
57-
57+
/*
5858
@media print, (prefers-reduced-motion: reduce) {
5959
.animated {
6060
animation-duration: 1ms !important;
@@ -66,3 +66,4 @@
6666
opacity: 0;
6767
}
6868
}
69+
*/

0 commit comments

Comments
 (0)