Merge pull request #33 from Safelite/feature/digital/SSR-111
Added accessibility text to subheader
This commit is contained in:
commit
e62b3510f2
1 changed files with 15 additions and 0 deletions
|
|
@ -12,6 +12,13 @@
|
||||||
/>
|
/>
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="d-flex align-items-center justify-content-center container-fluid overflow-hidden">
|
||||||
|
<p class="text-center small fw-normal mb-0">
|
||||||
|
<span>
|
||||||
|
{{ subText }}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -30,6 +37,14 @@ import buttonBack from "@/common-components/site-sub-header/button-back/button-b
|
||||||
content()
|
content()
|
||||||
{
|
{
|
||||||
return this.getCmsContent(this.cmsWidgetName, "SubHeaderText")
|
return this.getCmsContent(this.cmsWidgetName, "SubHeaderText")
|
||||||
|
},
|
||||||
|
subText()
|
||||||
|
{
|
||||||
|
return this.getCmsContent(this.cmsWidgetName, "SecondaryText")
|
||||||
|
},
|
||||||
|
backButtonAccessibleText()
|
||||||
|
{
|
||||||
|
return this.getCmsContent(this.cmsWidgetName, "BackButtonAccessibleText")
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue