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
We have isomorphic react rendering for our application.
We are trying to implement dark/light themes using user preferences. Is there any way we can load light.scss or dark.scss based on a flag/variable?
Why don't you use the prefers-color-scheme: dark media query as explained in this article? I think it's a better solution and it seems to be supported by most of all popular browsers
If you want to load styles conditionally because of data transfer restrictions, then I don't know 😅 but I'd use a HOC to specify the desired styles before rendering.
We have isomorphic react rendering for our application.
We are trying to implement dark/light themes using user preferences. Is there any way we can load light.scss or dark.scss based on a flag/variable?
Any help is appreciated. Thanks.
"css-loader": "^2.1.1"
"isomorphic-style-loader": "^5.1.0"
The text was updated successfully, but these errors were encountered: