Skip to content

Commit

Permalink
Merge pull request #93 from visionappscz/bugfix/site-height-bug
Browse files Browse the repository at this point in the history
Bugfix/site height bug
  • Loading branch information
adamkudrna authored Sep 8, 2016
2 parents d5381b7 + 95843b9 commit abe2e43
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 25 deletions.
42 changes: 26 additions & 16 deletions dist/css/bootstrap-ui.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-ui.css.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/css/bootstrap-ui.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-ui.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/bootstrap-ui.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/js/bootstrap-ui.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion src/less/components/layout/site.less
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ Styleguide 2.6
.site {
display: flex;
flex-direction: column;
height: 100%; /* 1, 3 */
min-height: 100%; /* 3 */
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.site {
height: 100%; /* 1, 3 */
}
}

.site-header,
Expand Down

0 comments on commit abe2e43

Please sign in to comment.