diff --git a/css/sections/profile.css b/css/sections/profile.css index 5bcb95c..c045440 100644 --- a/css/sections/profile.css +++ b/css/sections/profile.css @@ -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; } -} \ No newline at end of file +}