Hi @dugksl23,
Is the app crashing when you adjust the CSS or are you unable to view it? If it’s the latter, have you tried putting Zoom into its own div?
The Zoom Meeting UI is not actually attached to the body, but the css makes it seem that way because of the following styles—which can lead to confusion:
#zmmtg-root { width: 100%; height: 100%; position: fixed; top: 0; left: 0; background-color: black;}
The Zoom Meeting UI will be rendered in the tag with the zmmtg-root
id. You can place this anywhere in your project. You can also customize the css classes that are generated as well.
<div id="zmmtg-root"></div>
Let me know if this helps or if you can share some additional details.
Generally, we recommend keeping the CSS dependencies.
Thanks,
Will