Skip to content

Commit

Permalink
refactor: remove unused scrollbar correction
Browse files Browse the repository at this point in the history
  • Loading branch information
gitwoz committed Oct 29, 2024
1 parent bd087fe commit ff8d175
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 ff8d175

Please sign in to comment.