feat: implement dice page (CAS-75) #209

Merged
ptran merged 10 commits from feat-dice-frontend into main 2025-05-21 09:11:20 +00:00
Showing only changes of commit 681b87383e - Show all commits

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);
}
}