diff --git a/src/features/styles/ui/posts/posts.scss b/src/features/styles/ui/posts/posts.scss index 87e5022e..76689a5b 100644 --- a/src/features/styles/ui/posts/posts.scss +++ b/src/features/styles/ui/posts/posts.scss @@ -12,6 +12,17 @@ &::after { content: 'ð’…„'; } + + &:hover { + @keyframes spin { + 100% { + transform: rotate(360deg); + } + } + + animation: spin 2s linear infinite; + transform-origin: 50% 50%; + } } .selected {