Skip to content

Commit

Permalink
Merge pull request #4925 from thematters/fix/remove-unused-scrollbar-fix
Browse files Browse the repository at this point in the history
refactor: remove unused scrollbar correction
  • Loading branch information
pauljusti authored Oct 29, 2024
2 parents bd087fe + ff8d175 commit 29d9ea7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Layout/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@
grid-column: content;

@media (--sm-up) {
/* FIXME: page scrollbar is showed on open dialog */
min-height: calc(100vh + 1px);
min-height: calc(var(--ivh) * 100 + 1px);
min-height: calc(100dvh + 1px);
min-height: 100vh;
min-height: calc(var(--ivh) * 100);
min-height: 100dvh;
padding-bottom: 0;
}

Expand Down

0 comments on commit 29d9ea7

Please sign in to comment.