added transition when pressing buttons

This commit is contained in:
8BitBiscotti
2024-12-13 09:49:38 +01:00
parent 515cc107ab
commit 41268fba3c
6 changed files with 78 additions and 44 deletions
+5
View File
@@ -16,4 +16,9 @@ html {
.pxFont {
font-family: "Roboto", sans-serif;
font-size: 1rem;
}
@keyframes slide-left {
0% { transform: translateX(0%); }
100% { transform: translateX(-100%); }
}