From e9fe3c96083f2ef9054bfff340f1dc9d9bfe3837 Mon Sep 17 00:00:00 2001 From: scottkiener-at-safelite Date: Thu, 19 Feb 2026 09:31:37 -0500 Subject: [PATCH] Fix the border color of text input during error --- .../textbox-question/textbox-question.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/digital-components/textbox-question/textbox-question.vue b/src/digital-components/textbox-question/textbox-question.vue index 2443d67a..17334648 100644 --- a/src/digital-components/textbox-question/textbox-question.vue +++ b/src/digital-components/textbox-question/textbox-question.vue @@ -291,6 +291,17 @@ input::-webkit-date-and-time-value { } .textbox-question { + &.has-error { + .input-wrapper.has-search-icon { + input.form-control[type='text'] { + border-color: #db0020; + } + button[type='submit'] { + border-color: #db0020; + background-color: #fbe5e9; + } + } + } label { color: $black; font-weight: 600;