Scroll on the main content while opening the side menu ionic 5


<ion-content>
  <app-header ></app-header> 
  <div style="margin-top:20px;margin-bottom:10px;min-height:400px;padding:0">
    <ion-content>
    <ion-router-outlet id="main"></ion-router-outlet>
  </ion-content>
  </div>
  <ion-footer>
    <ion-toolbar>
    <app-footer></app-footer>
  </ion-toolbar>
  </ion-footer>
</ion-content>

on web page it is working fine, but on mobile app when the side menu is open and if I scroll it scrolls the complete content.
please help me with this.