Media Spoiler: Fix animation name (#4147)

This commit is contained in:
Alexander Zinchuk 2024-01-12 13:00:07 +01:00
parent 5ca9da1872
commit 6d1f7071ff

View File

@ -91,18 +91,21 @@
} }
:global(body:not(.no-page-transitions)) .dots { :global(body:not(.no-page-transitions)) .dots {
animation: 20s linear infinite dots; animation: 20s linear infinite;
animation-name: dots-animation;
&::before { &::before {
animation: 20s linear -7s infinite dots; animation: 21s linear -7s infinite;
animation-name: dots-animation;
} }
&::after { &::after {
animation: 20s linear -14s infinite dots; animation: 22s linear -14s infinite;
animation-name: dots-animation;
} }
} }
@keyframes dots { @keyframes dots-animation {
0% { 0% {
background-position: 0 0; background-position: 0 0;
} }