06-21-2023, 08:59 PM
(This post was last modified: 06-21-2023, 09:03 PM by Alexandre Machado.)
As I explained before, you *need* to set the viewport property in ServerController.
Without a viewport tag, your device will use the default viewport size before applying the style to the page and later it will change the value.
Here is what you should use for start:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Without a viewport tag, your device will use the default viewport size before applying the style to the page and later it will change the value.
Here is what you should use for start:
<meta name="viewport" content="width=device-width, initial-scale=1.0">

