From 6aae14975f5041d8d07ef29160a70e4f298d821b Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Mon, 16 Feb 2026 12:54:46 -0500 Subject: [PATCH] Fix alert icon red --- src/styles/ux-variables.scss | 1 - src/ux-components/alert/alert.vue | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/styles/ux-variables.scss b/src/styles/ux-variables.scss index cde2f976..e9455d7f 100644 --- a/src/styles/ux-variables.scss +++ b/src/styles/ux-variables.scss @@ -218,7 +218,6 @@ $alert-yellow-bg: #fef6e8; $alert-yellow-color: #e86421; $alert-red-bg: #fbe9e8; $alert-red-color: $red; -$alert-red-icon: #da291c; //Modal animation // This affects all [Bootstrap] modals diff --git a/src/ux-components/alert/alert.vue b/src/ux-components/alert/alert.vue index 34b9856d..0e0ea2be 100644 --- a/src/ux-components/alert/alert.vue +++ b/src/ux-components/alert/alert.vue @@ -355,7 +355,7 @@ export default { border-top-color: $alert-red-color; } svg { - fill: $alert-red-icon; + fill: $alert-red-color; width: 1rem; height: 1rem; }