I have created Blazor web app—Auto and added tailwind to the server part. The server part is working with no problems. When I style in the client, it works only if I have the same style on the server.
Ex.: Sever <p class="text-cyan-500">Some text</p>
Client : <p class="text-cyan-500">Some text</p>
If I change color to something else it will not work.
Does somebody else experience similar behavior?
To make it work, I also installed Tailwind on the client side. Now, I have two "tailwind.config.js" and two "tailwind.server.css" and "tailwind-client.css."
Thank you, Matjaz