From 764a2a50e33557eb40de12f902da83b8f4e642b7 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Fri, 11 Feb 2022 15:07:59 -0500 Subject: [PATCH] CSR-254: fix error styling --- src/styles/common-error-styles.scss | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index f75e9fd56..331c508a5 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -8,3 +8,24 @@ } } } + +.form-test-error { + color: $red; + font-weight: bold; +} + +.form-test-invalid { + &.btn.btn-primary { + color: $gray; + background: $gray-200; + cursor: default; + } + &.btn.btn-primary:hover, + &.btn.btn-primary:focus, + &.btn.btn-primary:focus-visible { + color: $gray; + background: $gray-200; + box-shadow: none; + } + +} \ No newline at end of file