I'm in the process of picking the tech stack for the next mid size front end development in my company.
I picked (for now): Angular, Tailwindcss, PrimeNg, and PrimeIcons.
Now I'm becoming confortable with, or refreshing my knowledge with those technologies. Everything is gooing smoothly except one thing, I'm unable to get right with tailwind. PrimeNg has classes for its components like p-inputtext-sm or p-inputtext-lg I would like to set those clases based on responsive variants of tailwind.
Something like:
<input pInputText type="text" id="username" formControlName="username" class="w-full p-inputtext-sm lg:p-inputtext-lg">
Is it possible?