How do you style the main 'body' or 'root' id? #793
Answered
by
mscolnick
raspharaoh
asked this question in
Q&A
-
Looking at the source html, after the app is rendered in the webpage there is: <body>
<div id="root"></div>
</body> How can I access the main page to style it? |
Beta Was this translation helpful? Give feedback.
Answered by
mscolnick
Feb 20, 2024
Replies: 1 comment
-
you could try: mo.Html("""
<style>
body {
...
}
</style>
""") but as a heads up, we don't guarantee any component classnames as "public API", meaning they could change and break css selectors |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
akshayka
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you could try:
but as a heads up, we don't guarantee any component classnames as "public API", meaning they could change and break css selectors