Ensure the field doesn't get too small

This commit is contained in:
Dane Everitt 2019-10-19 13:39:02 -07:00
parent 2e32df98ea
commit 946f2e17df
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -6,6 +6,7 @@ import ace, { Editor } from 'brace';
import styled from 'styled-components';
const EditorContainer = styled.div`
min-height: 16rem;
height: calc(100vh - 16rem);
${tw`relative`};