mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 21:06:42 +07:00
8 lines
159 B
SCSS
8 lines
159 B
SCSS
@keyframes bounce {
|
|
0% { transform: translate(0, -5%); }
|
|
100% { transform: translate(0, 5%); }
|
|
}
|
|
|
|
.arrow {
|
|
animation: bounce alternate infinite 0.25s;
|
|
}
|