Allow people to type essays

This commit is contained in:
Lim Chee Aun 2023-01-04 19:16:43 +08:00
parent 59ff5f8eca
commit edeceba729
2 changed files with 1 additions and 2 deletions

View file

@ -28,7 +28,7 @@
max-width: 100%; max-width: 100%;
height: 4em; height: 4em;
min-height: 4em; min-height: 4em;
max-height: 10em; max-height: 50vh;
resize: vertical; resize: vertical;
line-height: 1.4; line-height: 1.4;
} }

View file

@ -1049,7 +1049,6 @@ const Textarea = forwardRef((props, ref) => {
style={{ style={{
width: '100%', width: '100%',
height: '4em', height: '4em',
maxHeight: `${maxCharacters / 50}em`,
'--text-weight': (1 + charCount / 140).toFixed(1) || 1, '--text-weight': (1 + charCount / 140).toFixed(1) || 1,
}} }}
/> />