Reputation:
How do i disable the horizontal scroll bar in a fixed width and height browser window in Electron?
Thank you.
Upvotes: 10
Views: 33684
Reputation: 644
I think you just have to disable horizontal scrolling in your HTML file. One way to do so is by using css:
<style>
body {
overflow-x: hidden;
}
</style>
Try to add this in the <head>.
Upvotes: 15