moved animations

This commit is contained in:
2026-03-11 20:50:20 +01:00 Verified
parent 1cd07b9dd5
commit 658a8edf15
2 changed files with 5 additions and 8 deletions
-8
View File
@@ -55,14 +55,6 @@ export default function BlurredCode() {
{pythonCode + '\n\n\n' + pythonCode + '\n\n\n' + pythonCode} {pythonCode + '\n\n\n' + pythonCode + '\n\n\n' + pythonCode}
</SyntaxHighlighter> </SyntaxHighlighter>
</div> </div>
<style dangerouslySetInnerHTML={{
__html: `
@keyframes scrollUp {
0% { transform: translateY(0); }
100% { transform: translateY(-33.33%); }
}
`}} />
</div> </div>
); );
} }
+5
View File
@@ -22,4 +22,9 @@
100% { 100% {
opacity: 1; opacity: 1;
} }
}
@keyframes scrollUp {
0% { transform: translateY(0); }
100% { transform: translateY(-33.33%); }
} }