Skip to content

Commit

Permalink
Fix modal overflow scolling
Browse files Browse the repository at this point in the history
  • Loading branch information
Orlando Hohmeier committed Mar 8, 2016
1 parent 9ac315a commit 6b29319
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/css/components/app-modal.less
Expand Up @@ -15,7 +15,7 @@

.content-component {
border-left: @modal-footer-border-color 1px solid;
overflow: scroll;
overflow: auto;
padding-bottom: @base-spacing-unit*2;
padding-left: @base-spacing-unit*2;
padding-right: @base-spacing-unit*2.5;
Expand All @@ -42,7 +42,7 @@
[role="menu"] {
flex-shrink: 0;
padding-top: @base-spacing-unit;
overflow: scroll;
overflow: auto;
}
}
}
2 changes: 1 addition & 1 deletion src/css/components/modal.less
Expand Up @@ -37,7 +37,7 @@

max-height: calc(~"80vh" - (@modal-header-height+@modal-footer-height));
word-wrap: break-word;
overflow: scroll;
overflow: auto;

.row.full-bleed {
margin-left: -@modal-body-padding;
Expand Down

0 comments on commit 6b29319

Please sign in to comment.