After updating the css/js files of the Materializecss design in my project from v0.97.5 to v0.97.8, I noticed that my SideNav isn't functioning correctly anymore. When I try to click on the menu, it slides out but the dark overlay covers the entire screen, rendering everything unclickable. Here's a visual representation:
It seems like the 'sidenav-overlay' div with opacity is appearing above the sideNav, and I'm unable to interact with any of the menu items within the sideNav.
The setup is quite similar to what's outlined in the documentation, so I'm not sure what exactly has changed causing this issue.
EDIT1: My code -
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper light-blue lighten-1">
<ul id="slide-out" class="side-nav hide-on-med-and-down print-hidden">
<li><a href="#!">Upload<i class="material-icons right">cloud_upload</i></a></li>
<li class="divider"></li>
<li class="div-title">Admin</li>
<li><a href="/admin/users">Users</a></li>
<li><a href="/admin/roles">Roles</a></li>
</ul>
<a href="#" data-activates="slide-out" class="button-collapse show-on-large"><i class="material-icons">view_headline</i></a>
<a href="#" class="brand-logo">LOGO</a>
</div>
</nav>
</div>