Hello!
I have a question regarding the tailwind css integration. I did find couple of resources which made me believe it is in fact possible to do, but could anyone point me into the right direction of approaching this?
Thank you for any recommendations!
@Destnel, @tmcmillan99 and @chucktaylor have all been messing around with it. Maybe they have some opinions 
@ETomica
I have used Tailwind on several CMS projects. I did most of the development locally then uploaded to Hubspot through the CLI. All of these projects were using a version of Tailwind before they came out with the “just in time” engine. As a result, I was using the purge function to eliminate the unused Tailwind classes from my stylesheet. This proved a little tricky in that I had to download all of the modules I created so that the purge process could look through those files. (I find it way easier building modules in Hubspot than manually in a local dev environment.)
I have not used the newest version of Tailwind which will only include classes as you add them in development. That will make it super nice in not having to use the purge process. However, you will still have the issue with modules and will need to make sure the Tailwind classes used are included in the stylesheet.
Note: None of these projects used the Hubspot drag-n-drop functionality. It wasn’t required by the clients and I didn’t want to combine 2 different css frameworks if I didn’t have to. However, there shouldn’t be any issues using them together as the class names for drag-n-drop are not duplicated in Tailwind.
Hopefully this helps. Let me know if you have additional questions and I will do my best to answer them.
Thanks,
Terry
Thanks for sharing that resource, @DorianM 