fix: Add additional padding at the bottom of documents when editing

This commit is contained in:
Tom Moor
2022-12-14 20:44:38 -05:00
parent 600b3e4b3e
commit a9683f4d53

View File

@@ -1,7 +1,7 @@
import styled from "styled-components";
const ClickablePadding = styled.div<{ grow?: boolean }>`
min-height: 10em;
min-height: 50vh;
cursor: ${({ onClick }) => (onClick ? "text" : "default")};
${({ grow }) => grow && `flex-grow: 100;`};
`;