Merge pull request #2741 from Safelite/CASH-1327-fix-two-package-layout

Cash 1327 fix two package layout
This commit is contained in:
bmauger 2025-08-07 15:52:31 -04:00 committed by GitHub
commit a6cc80e88e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 17 additions and 4 deletions

View file

@ -73,11 +73,11 @@ export const pageProgressMapper = {
step: 3, step: 3,
}, },
"payment-method": { "payment-method": {
percent: 92, //The first Step 4 must be 92 so the animated bar lines up with the dot percent: 97, //The first Step 4 must be 97 so the animated bar lines up with the dot
step: 4, step: 4,
}, },
payment: { payment: {
percent: 96, percent: 98.5,
step: 4, step: 4,
}, },
confirmation: { confirmation: {

View file

@ -108,7 +108,7 @@ export default {
position: relative; position: relative;
background: $white; background: $white;
transition: all 150ms linear; transition: all 150ms linear;
border-radius: $border-radius-lg; border-radius: 50rem;
border: 1px solid $gray-500; border: 1px solid $gray-500;
width: 100%; width: 100%;
outline: none; outline: none;

View file

@ -624,7 +624,7 @@ export default {
if (this.packageNumber > 2) { if (this.packageNumber > 2) {
return "col-xl-12"; return "col-xl-12";
} else { } else {
return "col-xl-6"; return "col-xl-10";
} }
}, },
currentNumberOfPackagesAction(packageNumber) { currentNumberOfPackagesAction(packageNumber) {

View file

@ -761,6 +761,18 @@ export default {
} }
} }
.replace-options-question { .replace-options-question {
.base-input-button:not(.has-error):hover.list-card:not(.selected) {
border-radius: 50rem;
}
.button-question {
label {
&.list-card,
&.list-card input[type="checkbox"]:checked + .list-card-content,
&.list-card input[type="radio"]:checked + .list-card-content {
border-radius: 50rem;
}
}
}
.question-text { .question-text {
margin: 1rem 0 0 0; margin: 1rem 0 0 0;
@include media-breakpoint-up(md) { @include media-breakpoint-up(md) {

View file

@ -242,6 +242,7 @@ export default {
label { label {
&.list-card { &.list-card {
height: auto; height: auto;
border-radius: 50rem;
} }
} }
.two-list-card-width { .two-list-card-width {