After successfully integrating Tailwind into my Vue project and ironing out the initial kinks, I am now facing a roadblock. Despite having code completion in VS Code, I am unable to utilize breakpoints within my project.
<div class="container mx-auto">
<div class="card w-full sm:w-full md:w-1/2 lg:w-1/3 xl:w-1/3">
// Content
</div>
</div>
Check out this gif for reference.
The desired outcome is to have the div occupy 1/3 of the screen on desktops and be full width on mobile devices. However, currently, it spans across the entire width on all screen sizes. My search for solutions online has been fruitless so far.
It might be worth mentioning that I am utilizing VueJS. Any insights or suggestions would be greatly appreciated. Thank you in advance.