Fixes #918 - Add extra at bottom of document

This commit is contained in:
Tom Moor
2019-03-13 22:59:25 -07:00
parent 12ea37e71e
commit 3ef507c137

View File

@ -2,6 +2,7 @@
import styled from 'styled-components';
const ClickablePadding = styled.div`
min-height: 6em;
cursor: ${({ onClick }) => (onClick ? 'text' : 'default')};
${({ grow }) => grow && `flex-grow: 100;`};
`;