Use overflow-y: scoll on html element to avoid jumping around when the previous/next page adds a vertical scrollbar.

This commit is contained in:
Johann Schmitz 2016-07-13 15:39:59 +02:00
parent b27e74c03d
commit e93ef07810

View File

@ -2,6 +2,9 @@
* {
margin: 0;
}
html {
overflow-y: scroll;
}
html, body {
height: 100%;
}