From 16807c22051868717c79ed1056c7891ecc51bdf9 Mon Sep 17 00:00:00 2001 From: "Edward Tirado Jr." Date: Mon, 20 Apr 2026 14:55:13 -0500 Subject: [PATCH] updated variable for success color --- app/assets/css/variables.css | 1 + app/components/forms/password-reset-form.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/css/variables.css b/app/assets/css/variables.css index e3b3fc5..0bc9256 100644 --- a/app/assets/css/variables.css +++ b/app/assets/css/variables.css @@ -9,5 +9,6 @@ --color-button-warning: #f59e0b; --color-button-danger: #fb3b3b; --color-action-button-text: #fff; + --color-success-text: #4caf50; --color-error-text: #fb3b3b; } \ No newline at end of file diff --git a/app/components/forms/password-reset-form.vue b/app/components/forms/password-reset-form.vue index 6867e21..5ce5d14 100644 --- a/app/components/forms/password-reset-form.vue +++ b/app/components/forms/password-reset-form.vue @@ -59,6 +59,6 @@ const handlePasswordReset = async () => { } .success-message { - color: var(--color-button-primary); + color: var(--color-success-text); } \ No newline at end of file