Issue
Pages with sufficient html height to create scrollbar will have a smaller body element margin, see the difference between Notes and About.
Solution
Add scrollbar-gutter: stable; to html element, see documentation about it. In this case, this:
|
html { |
|
box-sizing: border-box; |
|
} |
Should become this:
html {
box-sizing: border-box;
scrollbar-gutter: stable;
}
Issue
Pages with sufficient
htmlheight to create scrollbar will have a smallerbodyelement margin, see the difference between Notes and About.Solution
Add
scrollbar-gutter: stable;tohtmlelement, see documentation about it. In this case, this:ultra/_sass/_layout.scss
Lines 1 to 3 in 0c7c02d
Should become this: