mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
21 lines
290 B
SCSS
21 lines
290 B
SCSS
@keyframes fadein {
|
|
0% {
|
|
transform: translateX(-15px);
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes rotate {
|
|
to {
|
|
transform: rotate(0deg);
|
|
}
|
|
from {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|