Skip to content

Commit

Permalink
Merge pull request #9 from open-sausages/pulls/4.0/6355-modal-height
Browse files Browse the repository at this point in the history
FIX react modal height
  • Loading branch information
flamerohr authored Mar 29, 2017
2 parents 0c9abd8 + 1a50a6e commit 0424276
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.sass-cache
/vendor/
/node_modules/
/**/*.js.map
/**/*.css.map
2 changes: 1 addition & 1 deletion client/dist/styles/bundle.css
Original file line number Diff line number Diff line change
Expand Up @@ -15853,7 +15853,7 @@ input.checkbox,input.radio,input[type=checkbox],input[type=radio]{
.modal-content{
overflow:hidden;
border:0;
height:100%;
height:auto;
}

.modal-header{
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Modal/Modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.modal-content {
overflow: hidden;
border: 0;
height: 100%; // IE10 fix
height: auto;
}


Expand Down

0 comments on commit 0424276

Please sign in to comment.