refactor: oops
All checks were successful
CI / Get Changed Files (pull_request) Successful in 21s
CI / Checkstyle Main (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / Docker frontend validation (pull_request) Successful in 1m8s
CI / oxlint (pull_request) Successful in 21s
CI / eslint (pull_request) Successful in 27s
CI / prettier (pull_request) Successful in 21s
CI / test-build (pull_request) Successful in 47s

This commit is contained in:
Phan Huy Tran 2025-05-21 11:06:12 +02:00 committed by Phan Huy Tran
commit 681b87383e

View file

@ -1,20 +0,0 @@
.dice-animation {
/* Add basic styling for the animation container */
display: flex;
align-items: center;
justify-content: center;
min-height: 100px; /* Ensure there's space for the animation */
}
.dice-animation p {
animation: spin 1s linear infinite; /* Simple spinning animation */
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}