i want to remove the vertical scrollbar that is added automatically on the canvas. I have the canvas within a div element and have a form element to the left of the canvas. Below is the code snippet,
.canvas_holder {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
     }
    .canvas {
        flex-grow: 1;
        height: 100%;
        display: block;
        position: relative;
     }
     form {
        height: 100%;
        .fields {
            background-color: #fff;
            height: 100%;
            position: relative;
            top: 0px;
            left: 0px;
            overflow: auto;
        }
        .actions {
            display: flex;
            justify-content: flex-end;
            position: sticky;
            bottom: 0px;
         }
      }
   <form>
        <div class=fields>
            <input>
        </div>
        <div class=actions>
            <button>Create</button>
        </div>
    </form>
    <div class="canvas">
        <div class="canvas_holder">
            <canvas width="1207" height="479" style="width:1207px, 
                height:479px";>
        </div>
     </div>