-
Notifications
You must be signed in to change notification settings - Fork 331
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
Support for ShadowDOM #139
Comments
Rather, is it possible to automatically detect and use React’s root instead? |
what's the status on this one? It should be pretty straightforward to implement. Is there any other way I can tell |
+1 on this. I'm seeing the same problem. The styles aren't getting applied in the shadow DOM. Any workarounds you guys are aware of? |
Related issue upstream: |
Same here |
@fregante I cannot apply styles to shadow root even its mode is "open". Can you guide me how to do that? |
Experiencing the same issue here. |
If I use a closed shadow DOM, the styles appended by Goober to the document’s
head
no longer reach itconst root = document.createElement("div"); document.body.append(root); + root.attachShadow({mode: "closed"}) render(<Toaster />, root);
Can you expose Goober’s target? https://github.com/cristianbote/goober/blob/e3f99e960a59d606fe7d4584383834465883ec8d/docs/docs/api/targets.md#L15
For example:
Edit: Also asked in:
The text was updated successfully, but these errors were encountered: