Merge pull request #2734 from Safelite/CASH-1327-quote-bug-fixes
CASH-1327 quote bug fixes
This commit is contained in:
commit
da0879a730
2 changed files with 15 additions and 4 deletions
|
|
@ -228,7 +228,10 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
&.has-package-discount {
|
&.has-package-discount {
|
||||||
min-height: 170px;
|
min-height: 140px;
|
||||||
|
@include media-breakpoint-up(md) {
|
||||||
|
min-height: 170px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
alertClass="alert-info" />
|
alertClass="alert-info" />
|
||||||
|
|
||||||
<promoModalQuestion
|
<promoModalQuestion
|
||||||
class="mt-6 d-flex justify-content-center"
|
class="mt-6 d-flex"
|
||||||
v-model="lineItems"
|
v-model="lineItems"
|
||||||
:addableVaps="addableVaps"
|
:addableVaps="addableVaps"
|
||||||
pageName="quote"
|
pageName="quote"
|
||||||
|
|
@ -927,16 +927,19 @@ export default {
|
||||||
:deep(.modal-component) {
|
:deep(.modal-component) {
|
||||||
.modal-dialog {
|
.modal-dialog {
|
||||||
max-width: 767px;
|
max-width: 767px;
|
||||||
margin: 0 auto;
|
margin: 0 0.5rem;
|
||||||
|
top: 30px;
|
||||||
@include media-breakpoint-up(md) {
|
@include media-breakpoint-up(md) {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
top: -10%;
|
top: 50px;
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
transform: none;
|
transform: none;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
.modal-content {
|
.modal-content {
|
||||||
|
border-radius: 0.5rem;
|
||||||
@include media-breakpoint-up(md) {
|
@include media-breakpoint-up(md) {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|
@ -945,6 +948,10 @@ export default {
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
&.modal-dialog-centered {
|
||||||
|
height: auto;
|
||||||
|
min-height: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.modal-footer {
|
.modal-footer {
|
||||||
button {
|
button {
|
||||||
|
|
@ -958,6 +965,7 @@ export default {
|
||||||
margin: 0 auto 1rem;
|
margin: 0 auto 1rem;
|
||||||
color: $blue;
|
color: $blue;
|
||||||
font-family: UrbanistSemibold, Arial, Helvetica, sans-serif;
|
font-family: UrbanistSemibold, Arial, Helvetica, sans-serif;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue