-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Global styles get added as quoted strings. #238
Comments
I face the same problem. |
Same here. Also, none of our global styles are working anymore - we think this might be related. @giraud 's fix works, but it's not ideal. From: Css.(
global(
"html",
[
boxSizing(`borderBox),
selector("*, *:before, *:after", [boxSizing(`inherit_)]),
selector("::-webkit-scrollbar", [background(`transparent)]),
],
)
); To: CssJs.(
global(.
"html",
[|
boxSizing(`borderBox),
selector("*, *:before, *:after", [|boxSizing(`inherit_)|]),
selector("::-webkit-scrollbar", [|background(`transparent)|]),
|],
)
); |
@rolandpeelen what do you mean ? switching from Css to CssJs is the fix ? |
@giraud - For us, for just the global Css variants, switching to |
giraud
added a commit
that referenced
this issue
Jul 1, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi. After updating the module, we've started facing the problem with global styles. They get added as camel-cased quoted strings.
Have anyone the same problem?
The text was updated successfully, but these errors were encountered: