Merge pull request #537 from Safelite/feature/SSR-1089

Feature/ssr 1089
This commit is contained in:
katiekroell 2024-01-17 16:00:42 -05:00 committed by GitHub
commit 07933e88bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -338,8 +338,8 @@ export default {
}, },
nextStepsBody(newValue, oldValue) { nextStepsBody(newValue, oldValue) {
if (newValue !== oldValue) { if (newValue !== oldValue) {
setupModalLink(this, 'RecalModal'); setupModalLinks(this, 'RecalModal');
setupModalLink(this, 'DeductibleModal'); setupModalLinks(this, 'DeductibleModal');
} }
} }
}, },

View file

@ -10,6 +10,10 @@ $font-size: 0.875rem;
margin-top: 1rem; margin-top: 1rem;
padding: 0; padding: 0;
.container-fluid {
margin-bottom: 1rem;
}
div.subheader-primary { div.subheader-primary {
padding: 0; padding: 0;
} }
@ -21,6 +25,8 @@ $font-size: 0.875rem;
p { p {
line-height: 1.5rem; line-height: 1.5rem;
font-size: $font-size; font-size: $font-size;
margin-bottom: 0.5rem;
color: $gray-600;
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }