feat: remove unused SVG files, add skill card data, and refactor Home component imports

This commit is contained in:
2025-05-21 12:55:06 +02:00
parent d3f7368ba8
commit 29b9dd93e2
8 changed files with 32 additions and 37 deletions
+30
View File
@@ -76,6 +76,16 @@
opacity: 0.7;
}
@keyframes fall {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(100vh);
}
}
/* Button Styling */
.btnPrimary {
background: linear-gradient(45deg, $accent-dragon, $accent-fire);
@@ -154,4 +164,24 @@
border-radius: 50%;
opacity: 0;
animation: rise linear forwards;
}
@keyframes rise {
0% {
transform: translateY(0) translateX(0);
opacity: 0;
}
10% {
opacity: 0.5;
}
90% {
opacity: 0.5;
}
100% {
transform: translateY(-100px) translateX(var(--x));
opacity: 0;
}
}