[Archived] Archived WIP of vielle.dev

Fix parallax timing

Changed files
+2 -2
src
components
blog
+1 -1
src/components/blog/Background.astro
··· 29 29 30 30 @media (prefers-reduced-motion: no-preference) { 31 31 [data-parallax] { 32 - animation: 1ms alternate scroll; 32 + animation: 1ms alternate linear scroll; 33 33 animation-timeline: scroll(); 34 34 } 35 35 }
+1 -1
src/components/blog/background/Stars.astro
··· 24 24 25 25 &[data-parallax] { 26 26 animation: 27 - 1ms alternate scroll, 27 + 1ms alternate linear scroll, 28 28 var(--rotate-dir) var(--rotate-speed) infinite linear spin !important; 29 29 animation-timeline: scroll(), auto !important; 30 30 }