We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29dac9c commit c682fc9Copy full SHA for c682fc9
src/styles/mixins.scss
@@ -300,25 +300,26 @@
300
}
301
302
@mixin query-buttons-animations() {
303
- animation: errorAnimation 300ms 1;
+ animation: errorAnimation 500ms linear;
304
305
@keyframes errorAnimation {
306
- 0%,
307
- 100% {
308
- transform: translate(0, 0) rotate(0deg);
+ 8%,
+ 41% {
+ transform: translateX(-2px);
309
+ }
310
+ 25%,
311
+ 58% {
312
+ transform: translateX(2px);
313
- 10%,
- 30%,
- 50%,
- 70%,
314
- 90% {
315
- transform: translate(0, 0) rotate(-5deg);
+ 75% {
+ transform: translateX(-1px);
316
317
- 20%,
318
- 40%,
319
- 60%,
320
- 80% {
321
- transform: translate(0, 0) rotate(5deg);
+ 92% {
+ transform: translateX(1px);
+ 0%,
+ 100% {
322
+ transform: translateX(0);
323
324
325
0 commit comments