Hello Muhammad,
To remove the scroll bars, you can use a css property,
- you can use this in two places based on your requirement,
1.In main.scss use as:
html{
overflow: hidden;
}
2.In page property use as:
overflow: hidden;
because it will not allow the page to scroll thereafter.