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">
|
||||
<h5
|
||||
ref="siteSubHeader"
|
||||
class="text-center text-black"
|
||||
class="sub-header text-center text-black lh-2"
|
||||
v-html="coverageStatementSubHeader"></h5>
|
||||
<div
|
||||
ref="explanatoryText"
|
||||
|
|
@ -344,12 +344,6 @@ export default {
|
|||
isRepair() {
|
||||
return this.mainStore.order.damage.isRepair;
|
||||
}
|
||||
// unverifiedADASReplace() {
|
||||
// return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
||||
// },
|
||||
// unverifiedNonADASReplace() {
|
||||
// return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
||||
// }
|
||||
},
|
||||
watch: {
|
||||
selectedProvider() {
|
||||
|
|
@ -476,10 +470,16 @@ export default {
|
|||
return (
|
||||
this.isDeductibleVisible && this.deductibleValue === 0
|
||||
);
|
||||
case 'unverifiedADASReplace':
|
||||
return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
||||
case 'unverifiedNonADASReplace':
|
||||
return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
||||
case 'verifiedRepair':
|
||||
return isRepair && this.isDeductibleVisible;
|
||||
case 'verifiedReplaceZeroDeductible':
|
||||
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:
|
||||
return null;
|
||||
}
|
||||
|
|
@ -512,6 +512,9 @@ export default {
|
|||
.deductible-text {
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
.sub-header {
|
||||
line-height: 2rem;
|
||||
}
|
||||
:deep ol {
|
||||
padding: 0;
|
||||
padding-left: 1.125rem;
|
||||
|
|
@ -531,6 +534,10 @@ export default {
|
|||
color: $black;
|
||||
}
|
||||
}
|
||||
:deep .body-text {
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
:deep .question-text {
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
|
|
|
|||
Loading…
Reference in a new issue