You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue must be fixed from Svelte.
When we use <style global>, svelte tries to handle styles with :global() but it doesn't process :where() correctly. table :where(th, td) is a valid CSS selector that I used in daisyUI but Svelte changes it to :global(.table) :global(:where(th), :global(td)) which is wrong.
Current workarounds:
You can use this on your main layout (without global)
App.svelte
tailwind.config.js
The text was updated successfully, but these errors were encountered: