Inspector and bootstrap issue

When I setup the inspector , I have a problem with the window itself zooming !

here is my html bootsrap code:

 <!DOCTYPE html>
<html>
    <head>
        <style>
            html,
            body {
                overflow: hidden;
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
                text-align: center;
            }
            #renderCanvas {
                width: 100%;
                height: 100%;
                touch-action: none;
            }
            #slider {
                width : 100%;
            }
        </style>
    </head>
    <body>

        <script src="dist/index.js"></script>
        <div class="container">
            <div class="row">
              <div class="col-10">
        <canvas id="renderCanvas" with="200px" height="200px"></canvas>
          </div>
              <div class="col-1">
        <button id="play"> Play</button>
        <button id="stop"> Stop</button>
          </div>
            </div>
        <div class="row" style="padding-top:30px">
        <div class="col">
        <input id="slider" type="range" value="250" min="0" max="500"/>
        </div>
       </div>
          </div>
        <div>
        </div>
    </body>
</html>

We may need a repro :slight_smile: