Tailwindcss flex-col issue

Hi guys, I am trying to build a login page and currently I am using tailwind css to build it. I am putting flex-col as a property but its changes are not reflecting. I am not sure what I am doing wrong, can someone help? I can clearly see flex property is getting set on right side of dev tools but not the flex-col property
No description
3 Replies
SpongeBob
SpongeBobβ€’6d ago
Looks like sometimes the tailwind css changes are reflecting and sometimes not. I tried putting the color changes, it was reflecting fine but suddenly it stopped reflecting. Not sure whats going on.
Kevin Powell
Kevin Powellβ€’5d ago
Could be something with the JIT not working properly for some reason... something with the config somewhere... I don't know enough about that side of things with TW, but it's the only thing I can think of, it's like it's not generating them, even though you need them 🀷
SpongeBob
SpongeBobβ€’5d ago
I found the issue last night, the tailwindconfig.css file was only looking for the files in src and the Login page was present inside the pages folder which was outside that src folder. Either we can update the tailwindconfig.css file to look inside pages folder too or we can move the pages folder inside the src folder