Skip to content

Commit

Permalink
fix #838 Sheet modals bottom does not expand to reach the bottom of t…
Browse files Browse the repository at this point in the history
…he window
  • Loading branch information
vegegoku committed Sep 14, 2023
1 parent 433b564 commit 9cce6c5
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ body.modal-open {
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
max-height: calc(100vh);
}

.modal:not([class*="-sheet"]) .modal-content {
max-height: calc(100vh - 60px);
}

Expand Down

0 comments on commit 9cce6c5

Please sign in to comment.