It looks like the problem may be related to not setting the initial viewport scale. Look in your UYSH child theme directory for the header.php file and you should find:
<meta name="viewport" content="width=device-width" />
try and change it to:
<meta name="viewport" content="width=device-width,initial-scale=1">
Cheers!