From a81af4acc131246b3e18a9c20a06dbdd01817d42 Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Wed, 17 Jan 2024 15:49:32 -0500 Subject: [PATCH] styling changes to bailout and contact-confirmation pages --- src/layouts/coverage-statement/coverage-statement.vue | 4 ++-- src/styles/bailout-common.scss | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/layouts/coverage-statement/coverage-statement.vue b/src/layouts/coverage-statement/coverage-statement.vue index fb1b826c..7e144400 100644 --- a/src/layouts/coverage-statement/coverage-statement.vue +++ b/src/layouts/coverage-statement/coverage-statement.vue @@ -338,8 +338,8 @@ export default { }, nextStepsBody(newValue, oldValue) { if (newValue !== oldValue) { - setupModalLink(this, 'RecalModal'); - setupModalLink(this, 'DeductibleModal'); + setupModalLinks(this, 'RecalModal'); + setupModalLinks(this, 'DeductibleModal'); } } }, diff --git a/src/styles/bailout-common.scss b/src/styles/bailout-common.scss index d7c68d2a..802506df 100644 --- a/src/styles/bailout-common.scss +++ b/src/styles/bailout-common.scss @@ -9,6 +9,10 @@ $font-size: 0.875rem; > div.sub-header-content { margin-top: 1rem; padding: 0; + + .container-fluid { + margin-bottom: 1rem; + } div.subheader-primary { padding: 0; @@ -21,6 +25,8 @@ $font-size: 0.875rem; p { line-height: 1.5rem; font-size: $font-size; + margin-bottom: 0.5rem; + color: $gray-600; &:last-child { margin-bottom: 0; }