Merge pull request #2566 from Safelite/CASH-788-fix-links-inop

CASH-788 set z-index so links are above footer.
This commit is contained in:
bmauger 2025-05-29 07:36:02 -04:00 committed by GitHub
commit 15a95b2947
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,7 +57,7 @@
@ForwardClicked="forwardButtonAction" />
<textBlock
class="mb-5"
class="mb-5 disclaimer-block"
cmsWidgetName="DisclaimerCopyWidget"
typeStyle="caption" />
</div>
@ -212,3 +212,10 @@ export default {
},
};
</script>
<style lang="scss" scoped>
.disclaimer-block {
position: relative;
z-index: 2;
}
</style>