I have a input element. It takes 50% of available parent width. Property w-6/12.
How to set width full for mobile devices?
Code is:
<div class="mt-4 width">
<div class="mt-1 w-6/12 sm:w-full">
<select
type="email"
autocomplete="email"
class="block w-full bg-gray input-color-gray input-color-gray font-roboto-100 rounded-md sm:text-sm p-3 bg-gray pr-4"
>
<option>Make</option>
</select>
</div>
</div>
I have tried:
sm:w-full

