Skip to content

Commit

Permalink
Fix content shift MUI tooltip issue (#494)
Browse files Browse the repository at this point in the history
Fix an issue where a scrollbar would momentarily appear and shift all page content to the left if a MUI tooltip was scrolled off screen.
  • Loading branch information
iamlogand authored Jul 8, 2024
1 parent 7727f60 commit 63a1377
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frontend/styles/master.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ body.dark {
background-color: var(--neutral-800);
}

@media (min-width: 1280px) {
body {
overflow-y: hidden;
}
}

#__next {
display: flex;
flex-flow: column;
Expand Down

0 comments on commit 63a1377

Please sign in to comment.