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
next-yak automatically uses css modules behind the scenes and in nextjs css modules are local by default.
this means that selectors e.g. html.dark-mode will be scoped automatically to the component
next-yak automatically uses css modules behind the scenes and in nextjs css modules are local by default.
this means that selectors e.g.
html.dark-mode
will be scoped automatically to the componentfor example
becomes
so although the user wrote
html.dark-mode
it would NOT match.as this is unintuitive for most users and therefore next-yak should automatically inject
:global
The text was updated successfully, but these errors were encountered: