Merge pull request #3017 from Safelite/feature/CASH-2112

CASH-2112 add text block
This commit is contained in:
AdamCaouetteSafelite 2026-01-16 14:17:10 -05:00 committed by GitHub
commit 2ad75c0981
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,6 +36,10 @@
:isItac="isItac" :isItac="isItac"
:isNoComp="isNoComp" :isNoComp="isNoComp"
:isCollapsible="false" /> :isCollapsible="false" />
<textBlock
class="payment-disclaimer"
marginTopSizeOverride="0"
cmsWidgetName="PaymentDisclaimerWidget" />
</div> </div>
</div> </div>
@ -56,6 +60,7 @@ import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
import navbar from "@/fmg-components/nav-bar/nav-bar"; import navbar from "@/fmg-components/nav-bar/nav-bar";
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header"; import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
import alert from "@/ux-components/alert/alert"; import alert from "@/ux-components/alert/alert";
import textBlock from "@/digital-components/text-block/text-block";
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper"; import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
import { settleAllPromises } from "@/helpers/layout-helper"; import { settleAllPromises } from "@/helpers/layout-helper";
@ -645,6 +650,7 @@ export default {
navbar, navbar,
cart, cart,
alert, alert,
textBlock,
}, },
}; };
</script> </script>
@ -671,5 +677,10 @@ export default {
margin: 0 0.5rem; margin: 0 0.5rem;
} }
} }
.payment-disclaimer p {
font-size: 0.875rem;
line-height: 1.2;
}
} }
</style> </style>