From 825b1972594508b066848d4d567890d0528d7476 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Thu, 4 Dec 2025 16:13:12 -0500 Subject: [PATCH 1/2] updates for continue button --- .../site-footer/site-footer.vue | 6 +-- src/styles/common-error-styles.scss | 25 +++++----- src/ux-components/button-main/button-main.vue | 49 +++++++++++-------- 3 files changed, 43 insertions(+), 37 deletions(-) diff --git a/src/iss-components/site-footer/site-footer.vue b/src/iss-components/site-footer/site-footer.vue index 1cf0f21e..1c600cef 100644 --- a/src/iss-components/site-footer/site-footer.vue +++ b/src/iss-components/site-footer/site-footer.vue @@ -125,14 +125,12 @@ export default { justify-content: center; } .col, - .col-auto, - .col button { + .col-auto { width: 100%; } @media only screen and (min-width: 340px) { .col, - .col-auto, - .col button { + .col-auto { width: auto; justify-content: flex-end; } diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index d1d5bf91..a064052b 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -202,23 +202,24 @@ html { } .form-test-invalid { + + // Disable Gray coloring to match Heritage &.btn.btn-primary { - color: $gray-600; - background: $gray-200; + //color: $gray-600; + //background: $gray-200; cursor: pointer; pointer-events: all; - font-weight: $font-weight-normal; } - &.btn.btn-primary:hover, - &.btn.btn-primary:focus { - color: $gray-600; - background: $gray-200; - box-shadow: none; - } + //&.btn.btn-primary:hover, + //&.btn.btn-primary:focus { + //color: $gray-600; + //background: $gray-200; + //box-shadow: none; + //} - &.btn.btn-primary:focus-visible { - box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $gray-700; - } + //&.btn.btn-primary:focus-visible { + // box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $gray-700; + //} } } \ No newline at end of file diff --git a/src/ux-components/button-main/button-main.vue b/src/ux-components/button-main/button-main.vue index 6a9f9f1f..4ffa2f57 100644 --- a/src/ux-components/button-main/button-main.vue +++ b/src/ux-components/button-main/button-main.vue @@ -56,42 +56,51 @@ export default {