Skip to content

Commit

Permalink
lets the centered modal have any height
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgalante committed Nov 17, 2017
1 parent 0ff7231 commit bd70b62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/4.0/components/modal.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ When modals become too long for the user's viewport or device, they scroll indep

### Vertically centered

Add `.modal-dialog-centered` to `.modal-dialog` to vertically center the modal. **Do not use this with long modals**—it will overflow the viewport and potentially hide parts of your modal.
Add `.modal-dialog-centered` to `.modal-dialog` to vertically center the modal.

<div id="exampleModalCenter" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
Expand Down
7 changes: 2 additions & 5 deletions scss/_modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@
.modal-dialog-centered {
display: flex;
align-items: center;
height: 100%;
margin-top: 0;
margin-bottom: 0;
min-height: calc(100% - (#{$modal-dialog-margin} * 2));
}

// Actual modal
Expand Down Expand Up @@ -154,8 +152,7 @@
}

.modal-dialog-centered {
margin-top: 0;
margin-bottom: 0;
min-height: calc(100% - (#{$modal-dialog-margin-y-sm-up} * 2));
}

.modal-content {
Expand Down

0 comments on commit bd70b62

Please sign in to comment.