Skip to content

Commit

Permalink
Fix command-bar styling for IE11
Browse files Browse the repository at this point in the history
Elements inside command bar would extend past it's max-height.

Add calculated max-height to command-bar__sandboxes so bottom of footer
is where the intended command-bar bottom is.
  • Loading branch information
michaeljfuller committed Jan 12, 2018
1 parent 0609340 commit 8e0f099
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/angular-playground/core/src/app.component.css
Expand Up @@ -85,6 +85,7 @@
margin-top: 9px;
overflow: auto;
position: relative;
max-height: calc(100vh - 109px);
}

.command-bar__sandboxes::-webkit-scrollbar {
Expand Down Expand Up @@ -319,4 +320,4 @@
line-height: 1.75;
text-align: left;
white-space: nowrap;
}
}

0 comments on commit 8e0f099

Please sign in to comment.