unhide Continue button in Firefox

This commit is contained in:
Kroell 2023-03-16 10:58:54 -04:00
parent 04905559d9
commit a4034dd3eb

View file

@ -119,7 +119,7 @@
disableAutoFill />
</div>
</div>
<div class="row mt-4 position-sticky top-100">
<div class="row mt-4 position-sticky top-100" id="welcomeFooter">
<div class="col">
<site-footer
cmsWidgetName="SiteFooterWidget"
@ -342,4 +342,11 @@
{
margin-bottom: 0rem !important;
}
// Temporary solution that prevents the Continue button from being hidden in Firefox
@-moz-document url-prefix() {
#welcomeFooter {
position: static !important;
}
}
</style>