Merge pull request #2734 from Safelite/CASH-1327-quote-bug-fixes

CASH-1327 quote bug fixes
This commit is contained in:
bmauger 2025-08-06 09:41:10 -04:00 committed by GitHub
commit da0879a730
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 4 deletions

View file

@ -228,7 +228,10 @@ export default {
}
&.has-package-discount {
min-height: 170px;
min-height: 140px;
@include media-breakpoint-up(md) {
min-height: 170px;
}
}
&:before {

View file

@ -57,7 +57,7 @@
alertClass="alert-info" />
<promoModalQuestion
class="mt-6 d-flex justify-content-center"
class="mt-6 d-flex"
v-model="lineItems"
:addableVaps="addableVaps"
pageName="quote"
@ -927,16 +927,19 @@ export default {
:deep(.modal-component) {
.modal-dialog {
max-width: 767px;
margin: 0 auto;
margin: 0 0.5rem;
top: 30px;
@include media-breakpoint-up(md) {
width: 50%;
max-width: 600px;
top: -10%;
top: 50px;
right: 0;
left: 0;
transform: none;
margin: 0 auto;
}
.modal-content {
border-radius: 0.5rem;
@include media-breakpoint-up(md) {
box-shadow: none;
border-radius: 0;
@ -945,6 +948,10 @@ export default {
border-radius: 0.5rem;
}
}
&.modal-dialog-centered {
height: auto;
min-height: auto;
}
}
.modal-footer {
button {
@ -958,6 +965,7 @@ export default {
margin: 0 auto 1rem;
color: $blue;
font-family: UrbanistSemibold, Arial, Helvetica, sans-serif;
text-decoration: none;
}
}
}