optimize shortcuts style

This commit is contained in:
Qing
2022-05-22 13:32:19 +08:00
parent b7c3f3e327
commit 45d1cc3f35
3 changed files with 42 additions and 42 deletions

View File

@@ -4,7 +4,10 @@
inset: 0;
background-color: var(--model-mask-bg);
backdrop-filter: blur(12px);
animation: opacityReveal 150ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
@media (prefers-reduced-motion: no-preference) {
animation: opacityReveal 150ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
}
@keyframes contentShow {
@@ -46,5 +49,7 @@
}
}
animation: contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
@media (prefers-reduced-motion: no-preference) {
animation: contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
}