I have menu that I would like to be positioned to left of the screen when screen is small (let say before SM) and positioned to right when bigger.
<MenuItems
class="
absolute left-2 top-24 w-full mt-8
sm:right-2 sm:top-0 sm:w-max
"
>
Settings for right-*
works as expected when applied alone, however when prefixed with breakpoint sm
left-*
is taking priority.
Is it a way to use something that would cancel left on bigger screens? like sm:left-none