mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-04-06 01:25:38 +00:00
20 lines
363 B
SCSS
20 lines
363 B
SCSS
@keyframes ds-animation-shake {
|
|
from, to {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
10%, 30%, 50%, 70%, 90% {
|
|
transform: translate3d(-5px, 0, 0);
|
|
}
|
|
20%, 40%, 60%, 80% {
|
|
transform: translate3d(5px, 0, 0);
|
|
}
|
|
}
|
|
|
|
.ds-animated {
|
|
animation-duration: 0.8s;
|
|
animation-fill-mode: both;
|
|
}
|
|
.ds-animation-shake {
|
|
animation-name: ds-animation-shake;
|
|
}
|