feat: implement dice page (CAS-75) #209
1 changed files with 0 additions and 20 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Reference in a new issue