Merge pull request #630 from outline/issue-624

Increase padding at the bottom of the editable area
This commit is contained in:
Tom Moor
2018-03-25 16:04:50 -07:00
committed by GitHub

View File

@@ -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')};