Firefox styling fixes for welcome-page

This commit is contained in:
Kroell 2023-03-17 15:18:19 -04:00
parent b64d73458b
commit f7c51ba579

View file

@ -50,6 +50,7 @@
disableAutoFill
validationRules="damage-option-required"
placeHolderText="Select an option"
id="welcomeDropdown"
/>
</div>
</div>
@ -77,6 +78,7 @@
isRequired
disableAutoFill
placeHolderText="Select an option"
id="welcomeDropdown"
/>
</div>
</div>
@ -342,11 +344,16 @@
{
margin-bottom: 0rem !important;
}
// Temporary solution that prevents the Continue button from being hidden in Firefox
@-moz-document url-prefix() {
// Temporary solution that prevents the Continue button from being hidden in Firefox
#welcomeFooter {
position: static !important;
}
// Fixes Firefox styling defect for placeholder text in dropdown fields
#welcomeDropdown {
.form-select {
padding: 0.75rem 1rem;
}
}
}
</style>