CASH-1327 misc bug fixes.
This commit is contained in:
parent
7d10714ff5
commit
0eed121fc3
5 changed files with 17 additions and 4 deletions
|
|
@ -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 92 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: {
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue