From b3ce95057ed41d10fa448a18bbfe126b1c7eeb37 Mon Sep 17 00:00:00 2001 From: Shawn Erquhart Date: Mon, 20 Mar 2017 12:33:04 -0400 Subject: [PATCH] fix preview pane height in Safari --- src/components/EntryEditor/EntryEditor.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/EntryEditor/EntryEditor.css b/src/components/EntryEditor/EntryEditor.css index 5c164279..2a59d4c1 100644 --- a/src/components/EntryEditor/EntryEditor.css +++ b/src/components/EntryEditor/EntryEditor.css @@ -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;