Skip to content

Commit

Permalink
💄 ui(<ConsultationForm>): Remove margin around textareas.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Jan 6, 2025
1 parent fdf1bb3 commit a73ab85
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions imports/ui/consultations/ConsultationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,9 @@ const StyledPaper = styled(Paper)(({theme}) => ({
padding: theme.spacing(3),
}));

const TextArea = styled(TextField)(({theme}) => ({
margin: theme.spacing(1),
const TextArea = styled(TextField)(() => ({
overflow: 'auto',
width: `calc(100% - ${theme.spacing(2)})`,
width: '100%',
}));

const defaultDate = '1970-01-01';
Expand Down

0 comments on commit a73ab85

Please sign in to comment.