Skip to content

Commit

Permalink
Merge pull request #113 from InseeFr/feat/bigger-comment-font-size
Browse files Browse the repository at this point in the history
feat: better readability of comment
  • Loading branch information
ddecrulle committed Jul 10, 2023
2 parents 66c898a + 6c3866e commit 6cf64f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pearl",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"dependencies": {
"@date-io/date-fns": "1.x",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ const useStyles = makeStyles(() => ({
resize: 'none',
border: 'none',
margin: '10px',
fontSize: '2vw',
overflow: 'scroll'
},
paper: {
borderRadius: '15px',
Expand Down Expand Up @@ -58,8 +60,8 @@ const Comment = ({ editable }) => {
<Paper className={classes.paper}>
<TextareaAutosize
className={classes.noResize}
rowsMin={10}
cols={50}
rowsMax={6}
cols={75}
placeholder={D.organizationComment}
defaultValue={interviewerComment}
onBlur={onBlur}
Expand Down

0 comments on commit 6cf64f5

Please sign in to comment.