cancel
Showing results for 
Search instead for 
Did you mean: 
Important updates from Zoom Support:
  • Effective immediately, customers with subscription plans greater than $10 USD/month may receive live chat support. Sign in and visit our contact page to view your support options.

  • Starting February 1, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to keep using SMS/MMS capabilities on their numbers.

Javascript Meeting SDK: Mobile Layout Doesn't Scale Correctly

petercopter
Newcomer
Newcomer

I'm implementing the Meeting SDK for Web. On desktop everything works fine, but mobile is not scaling correctly. Weirdly it's only Chrome, Safari on iOS simulator seems to work as expected.

petercopter_0-1687065344712.png

I noticed there's CSS coming in that sets the html and body elements to a min-width:

 

html, body {
  min-width: 1100px;
}

 

When I override that, the mobile layout works as expected:

 

html, body {
  min-width: auto;
}

 

 What's going on here?

2 REPLIES 2

Ray_Harwood
Community Champion | Customer
Community Champion | Customer

Welcome to the Zoom Community, @petercopter 

 

This is a question more appropriate for the Developers Forum at https://developers.zoom.us/


Ray -- check out the GoodClix website or the Z-SPAN website.

petercopter
Newcomer
Newcomer

@Ray_Harwood Oops yep, thanks! 👍