frank Walleway
frank Walleway

Reputation: 136

Scrollbar keeps popping in on reload

In my application I'm using vuejs with some extensions like: vuex, vue-router and more. The problem I'm having is that on every reload my application moves a bit to the left because of a scrollbar and then gets back to it's original position.

Any help?

Upvotes: 0

Views: 44

Answers (1)

Dev Bunker
Dev Bunker

Reputation: 127

If you dont want anyone to sroll on the page, you can just add

.className {
    overflow: hidden;
}

Upvotes: 1

Related Questions