Has anyone worked with react modules + tailwind?
We run into some CSS conflicts, as we have 2 different tailwind stylesheets coexisting within one big project: one for the Hubspot CMS, one for the react modules. The properties in my media queries are overridden by the second stylesheet.
I tried to declare both the CMS files and the react files in my tailwind config files, so the CSS generated is the same on both stylesheets. It works on local development: I can see in the browser that all CSS selectors are declared. But when I upload the project and look online, some CSS properties are gone. Another solution would be to only use the stylesheet in dev environment for the react component.
Any help would be appreciated 🙏