CoreyMSchafer/code_snippets

Flaskblog navigation bar flicker

Opened this issue · 0 comments

When switching between pages in Flaskblog and the home page features more posts than can be seen in the current browser size, the navigation bar contents will "flick" to the left when the browser's vertical scroll bar appears. One possible solution is using overflow-y in main.css:

html {
overflow-y:scroll;
}