From fcd8f07a2a0340da6ad9c872172d8553d0900542 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 25 Mar 2018 15:56:17 -0700 Subject: [PATCH] Increase padding at the bottom of the editable area --- app/components/Editor/components/ClickablePadding.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Editor/components/ClickablePadding.js b/app/components/Editor/components/ClickablePadding.js index aa8b84a92..557591759 100644 --- a/app/components/Editor/components/ClickablePadding.js +++ b/app/components/Editor/components/ClickablePadding.js @@ -12,7 +12,7 @@ const ClickablePadding = (props: Props) => { }; const Container = styled.div` - min-height: 150px; + min-height: 50vh; padding-top: 50px; cursor: ${({ onClick }) => (onClick ? 'text' : 'default')};