adding glitching to profile pic
All checks were successful
Homepage Build and Deploy / Build Homepage Image (push) Successful in 1m21s
Homepage Build and Deploy / Deploy Homepage (push) Successful in 31s

This commit is contained in:
2026-03-16 20:26:41 -03:00
parent cbf265495f
commit 3b8b1bde26

View File

@@ -77,6 +77,16 @@
border-radius: var(--border-radius-large);
}
.avatar:hover img {
animation: avatar-glitch 1s infinite linear;
}
@keyframes avatar-glitch {
0%, 100% {
transform: translate(0);
}
}
@media (max-width: 1024px) {
.profile-info {
align-items: center;
@@ -144,4 +154,4 @@
.profile-info-item {
font-size: 0.85rem;
}
}
}