I am currently facing an issue while attempting to use Angular MaterializeCSS () for designing a form. The problem I'm encountering is that my labels and inputs are overlapping, and despite following the documentation instructions by wrapping my form in input-field tags, I can't seem to resolve this layout issue. Below is the code snippet that I've implemented:
<fieldset ng-class="{'form-group-has-focus': hasValueOrFocus()}">
<input-field>
// Code snippet continues...
</fieldset>
The visual output of the form ends up looking like this:
https://i.sstatic.net/Ou05S.png
I would appreciate any insights or suggestions on how to rectify this problem. Thank you!