styling change
This commit is contained in:
parent
f3bf9b93c5
commit
a82bc33f9d
1 changed files with 18 additions and 11 deletions
|
|
@ -17,7 +17,7 @@
|
||||||
<div class="col-md-6 col-xl-4">
|
<div class="col-md-6 col-xl-4">
|
||||||
<h5
|
<h5
|
||||||
ref="siteSubHeader"
|
ref="siteSubHeader"
|
||||||
class="text-center text-black"
|
class="sub-header text-center text-black lh-2"
|
||||||
v-html="coverageStatementSubHeader"></h5>
|
v-html="coverageStatementSubHeader"></h5>
|
||||||
<div
|
<div
|
||||||
ref="explanatoryText"
|
ref="explanatoryText"
|
||||||
|
|
@ -344,12 +344,6 @@ export default {
|
||||||
isRepair() {
|
isRepair() {
|
||||||
return this.mainStore.order.damage.isRepair;
|
return this.mainStore.order.damage.isRepair;
|
||||||
}
|
}
|
||||||
// unverifiedADASReplace() {
|
|
||||||
// return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
|
||||||
// },
|
|
||||||
// unverifiedNonADASReplace() {
|
|
||||||
// return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
|
||||||
// }
|
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
selectedProvider() {
|
selectedProvider() {
|
||||||
|
|
@ -476,10 +470,16 @@ export default {
|
||||||
return (
|
return (
|
||||||
this.isDeductibleVisible && this.deductibleValue === 0
|
this.isDeductibleVisible && this.deductibleValue === 0
|
||||||
);
|
);
|
||||||
case 'unverifiedADASReplace':
|
case 'verifiedRepair':
|
||||||
return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
return isRepair && this.isDeductibleVisible;
|
||||||
case 'unverifiedNonADASReplace':
|
case 'verifiedReplaceZeroDeductible':
|
||||||
return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
return !isRepair && this.isDeductibleVisible && this.deductibleValue === 0;
|
||||||
|
case 'verifiedReplaceDeductibleOverZero':
|
||||||
|
return !isRepair && this.isDeductibleVisible && this.deductibleValue !== 0;
|
||||||
|
// case 'unverifiedADASReplace':
|
||||||
|
// return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
||||||
|
// case 'unverifiedNonADASReplace':
|
||||||
|
// return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
@ -512,6 +512,9 @@ export default {
|
||||||
.deductible-text {
|
.deductible-text {
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
}
|
}
|
||||||
|
.sub-header {
|
||||||
|
line-height: 2rem;
|
||||||
|
}
|
||||||
:deep ol {
|
:deep ol {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
padding-left: 1.125rem;
|
padding-left: 1.125rem;
|
||||||
|
|
@ -531,6 +534,10 @@ export default {
|
||||||
color: $black;
|
color: $black;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
:deep .body-text {
|
||||||
|
font-size: 0.875rem;
|
||||||
|
line-height: 1.5rem;
|
||||||
|
}
|
||||||
:deep .question-text {
|
:deep .question-text {
|
||||||
margin-top: 1.5rem;
|
margin-top: 1.5rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue