I am currently integrating Materialize CSS into my application and have used media queries to ensure that the layout is responsive. However, I am facing an issue with a select dropdown element. It works fine on laptops but does not allow for selecting any option on tablet and mobile views. Can anyone provide assistance with this?
<div class="input-field col s12 newid m6 l6">
<select>
<option value="" disabled selected>All</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<label>Data</label>
@media screen and (max-width: 320px) {
.newid { width: 96%!important;
margin-top: 8%!important;
margin-left: 0%!important;
}
}