Styling pages WIP

This commit is contained in:
2025-02-20 20:31:26 +01:00
parent 1cbcb8ce4c
commit 80dd1b48aa
15 changed files with 371 additions and 33 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ function Code({ code, loaded }: CodeProps) {
}, [timer, characters]);
return (
<div className='code'>
<div className='code-container'>
{code.split('').map((char, index) => renderCharacter(code, characters, loaded, char, index))}
</div>
);