From 681b87383ed0ffe07ed051fffeb45449c366c60d Mon Sep 17 00:00:00 2001
From: Phan Huy Tran
Date: Wed, 21 May 2025 11:06:12 +0200
Subject: [PATCH] refactor: oops
---
.../app/feature/game/dice/dice.component.css | 20 -------------------
1 file changed, 20 deletions(-)
delete mode 100644 frontend/src/app/feature/game/dice/dice.component.css
diff --git a/frontend/src/app/feature/game/dice/dice.component.css b/frontend/src/app/feature/game/dice/dice.component.css
deleted file mode 100644
index e1851d0..0000000
--- a/frontend/src/app/feature/game/dice/dice.component.css
+++ /dev/null
@@ -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);
- }
-}