Merge pull request #309 from netlify/fix-preview-pane-safari

fix preview pane height in Safari
This commit is contained in:
Shawn Erquhart 2017-03-20 12:45:00 -04:00 committed by GitHub
commit 128111a85e

View File

@ -1,5 +1,10 @@
@import '../UI/theme';
/* Quick fix for preview pane not fully displaying in Safari */
:global(.SplitPane .Pane) {
height: 100%;
}
.controlPane {
height: calc(100% - 55px);
overflow: auto;