Made changes to CSS and merged together.

This commit is contained in:
2025-12-17 23:27:46 -05:00
parent 5fd71f8c94
commit 176cf537a6
8 changed files with 95 additions and 51 deletions

View File

@@ -13,7 +13,7 @@
}
.loading {
color: white;
color: var(--loading-color);
min-height: 200px;
display: flex;
align-items: center;
@@ -32,25 +32,25 @@
z-index: 1200;
}
.modal {
background: #fff;
color: #222;
background: var(--modal-bg);
color: var(--modal-text);
padding: 1.5rem 2rem;
border-radius: 12px;
min-width: 240px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
box-shadow: var(--modal-shadow);
text-align: center;
}
/* Dialog Message */
.dialog-message {
font-size: 1.08rem;
color: #444;
color: var(--dialog-message);
font-weight: 500;
margin-bottom: 1.2rem;
text-align: center;
}
.dialog-message .child-name {
color: #667eea;
color: var(--dialog-child-name);
font-weight: 700;
margin-left: 2px;
}
@@ -71,7 +71,7 @@
height: 72px;
object-fit: cover;
border-radius: 8px;
background: #eee;
background: var(--info-image-bg);
}
.details,
.reward-details,
@@ -89,7 +89,7 @@
.points,
.reward-points,
.task-points {
color: #667eea;
color: var(--info-points);
font-weight: 500;
font-size: 1rem;
}