Skip to content

Commit

Permalink
Fix: disable vertical scroll instead of hide on desktop browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsible committed Jul 15, 2020
1 parent 677ea3c commit f26a9a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions client/src/sass/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ body {
color: pvar(--mainForegroundColor);
background-color: pvar(--mainBackgroundColor);
font-size: 14px;
// On desktop browsers, make sure vertical scroll bar is always visible
// Allow to disable the scrollbar instead of hide it when the content fit the body
// And not move the content and header horizontally sticked to right when the content is updating
overflow-y: scroll;
}

::selection {
Expand Down
8 changes: 8 additions & 0 deletions client/src/sass/bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,14 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
}
}


// On desktop browsers, make the content and header horizontally sticked to right not move when the content is updating
.modal-open {
overflow-y: scroll !important; // Make sure vertical scroll bar is always visible on desktop browsers to get disabled scrollbar effect
position: fixed; // Fix the body position to disable any scroll content
width: 100vw; // Make sure the content fits all the available width when position: fixed
}

// Nav customizations
.nav .nav-link {
display: flex !important;
Expand Down

0 comments on commit f26a9a8

Please sign in to comment.