aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles/Dashboard.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/styles/Dashboard.module.css')
-rw-r--r--app/src/styles/Dashboard.module.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/src/styles/Dashboard.module.css b/app/src/styles/Dashboard.module.css
index 96ed919..7f332c7 100644
--- a/app/src/styles/Dashboard.module.css
+++ b/app/src/styles/Dashboard.module.css
@@ -5,6 +5,35 @@ body {
background-color: #2c3338;
}
+.loadingSpinner {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ height: 100vh;
+}
+
+.spinner {
+ border: 4px solid #ccc;
+ border-top: 4px solid #415eac;
+ border-radius: 50%;
+ width: 50px;
+ height: 50px;
+ animation: spin 2s linear infinite;
+}
+
+@keyframes spin {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+}
+
+.loadingSpinner p {
+ margin-top: 20px;
+ color: #415eac;
+ font-weight: bold;
+}
+
+
table {
margin: 0 auto;
text-align: center;