Hi,
How can I add tailwind classes to the “tailwind_theme/tailwind.css” that don’t exist in the html.
I see that Pinegrow is adding one by one the Tailwind classes that I use in the html but when using Javascript in a function that adds a tailwind class to a tag it does not exist in “tailwind_theme/tailwind.css”
sidebar.classList.add("sm:w-3/5", "lg:w-5/6");
How can I add a tailwind class in “tailwind_theme/tailwind.css” no matter it exists in the html or a tag uses it or not?