aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/ErrorDisplay.css
diff options
context:
space:
mode:
authorCopilot <198982749+Copilot@users.noreply.github.com>2025-11-07 19:58:44 +0100
committerGitHub <noreply@github.com>2025-11-07 19:58:44 +0100
commitfebe700d4564e5c0fec0dfbda7dcfcdff0af589b (patch)
treeedfbc079b70bf7ae831851804f87b1a409633a4f /src/frontend/app/components/ErrorDisplay.css
parentd08e350a4b44c755f65d50227329e212efafb1b2 (diff)
[WIP] Fix stop alert colours in dark mode and consolidate styling (#84)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com>
Diffstat (limited to 'src/frontend/app/components/ErrorDisplay.css')
-rw-r--r--src/frontend/app/components/ErrorDisplay.css10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/frontend/app/components/ErrorDisplay.css b/src/frontend/app/components/ErrorDisplay.css
index 096182a..4799949 100644
--- a/src/frontend/app/components/ErrorDisplay.css
+++ b/src/frontend/app/components/ErrorDisplay.css
@@ -14,7 +14,7 @@
.error-icon {
width: 48px;
height: 48px;
- color: #e74c3c;
+ color: var(--error-icon-color);
margin: 0 auto 1rem;
display: block;
}
@@ -22,12 +22,12 @@
.error-title {
font-size: 1.5rem;
font-weight: 600;
- color: #2c3e50;
+ color: var(--error-title-color);
margin: 0 0 0.5rem;
}
.error-message {
- color: #7f8c8d;
+ color: var(--error-message-color);
margin: 0 0 1.5rem;
line-height: 1.5;
}
@@ -36,7 +36,7 @@
display: inline-flex;
align-items: center;
gap: 0.5rem;
- background: #3498db;
+ background: var(--button-background-color);
color: white;
border: none;
padding: 0.75rem 1.5rem;
@@ -48,7 +48,7 @@
}
.error-retry-button:hover {
- background: #2980b9;
+ background: var(--button-hover-background-color);
}
.error-retry-button:active {