Add ScrollToTop component and skills section

This commit is contained in:
dertyp7
2024-01-13 18:16:12 +01:00
parent 171510ebfc
commit 0a9462095d
3 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
// src/styles/ScrollToTop.scss
.scrollToTop {
position: fixed;
bottom: 20px;
right: 20px;
cursor: pointer;
.arrow {
transition: transform 200ms ease-in-out;
&.up {
transform: rotate(0deg);
}
&.down {
transform: rotate(-180deg);
}
}
&:hover {
animation: pulse 1s infinite;
color: var(--color-accent);
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.4);
}
100% {
transform: scale(1);
}
}
}