Skip to content

Commit

Permalink
fix: set the text size for NewChat to a global default value (#2881)
Browse files Browse the repository at this point in the history
  • Loading branch information
musale authored Nov 28, 2023
1 parent 48d2d55 commit 45a649f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/mgt-chat/src/components/NewChat/NewChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ const useStyles = makeStyles({
display: 'flex',
flexDirection: 'column',
gridRowGap: '16px',
minWidth: '300px'
minWidth: '300px',
'& textarea': {
fontSize: 'var(--type-ramp-base-font-size)',
'::placeholder': {
fontSize: 'var(--type-ramp-base-font-size)'
}
}
},
formButtons: {
display: 'flex',
Expand Down

0 comments on commit 45a649f

Please sign in to comment.