Skip to content

Commit

Permalink
refactor: remove unneeded classes
Browse files Browse the repository at this point in the history
  • Loading branch information
ilbertt committed Oct 6, 2024
1 parent fe95c4d commit 2e2b415
Showing 1 changed file with 6 additions and 20 deletions.
26 changes: 6 additions & 20 deletions src/fortune-wheel-booth-frontend/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,12 @@ button[type='submit'] {
display: none;
}

.prize-container-animation {
animation: fadeIn 0.7s ease-in forwards;
.modal-prize-container-animation {
animation: rotateScaleIn 0.7s ease-in forwards;
}

.modal-prize-container-animation-no-win {
animation: prizeValueScaleFadeIn 0.7s ease-in forwards;
}

canvas {
Expand All @@ -101,24 +105,6 @@ canvas {
}
}

.modal-prize-container-animation {
animation: rotateScaleIn 0.7s ease-in forwards;
}

.modal-prize-container-animation-no-win {
animation: prizeValueScaleFadeIn 0.7s ease-in forwards;
}

@keyframes swing {
from {
transform: rotate(-20deg);
}

to {
transform: rotate(20deg);
}
}

.prize-value-animation {
animation: prizeValueScaleFadeIn 0.7s ease-in forwards;
animation-delay: 0.8s;
Expand Down

0 comments on commit 2e2b415

Please sign in to comment.