Skip to content

Commit

Permalink
feat: expand the output textarea for long strings
Browse files Browse the repository at this point in the history
  • Loading branch information
recurser committed Jan 5, 2022
1 parent 7086a19 commit 51589a9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/forms/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import { PropsWithChildren, ReactElement } from 'react'
export const Form = ({
children,
}: PropsWithChildren<Record<string, unknown>>): ReactElement => (
<Pane display="flex" flexDirection="column" marginBottom={majorScale(1)}>
<Pane
display="flex"
flexDirection="column"
flexGrow={1}
marginBottom={majorScale(1)}
>
{children}
</Pane>
)

0 comments on commit 51589a9

Please sign in to comment.