Commit 30dda76
committed
🤖 Fix code review textarea wrapping
The review note textarea was extending horizontally beyond visible
boundaries instead of wrapping text to fit the container width.
Changes:
- NoteTextarea: Added max-width: 100% and box-sizing: border-box
- NoteTextarea: Changed overflow-y from hidden to auto for scrolling
- NoteTextarea: Added white-space: pre-wrap to wrap long lines
- NoteTextarea: Added word-wrap: break-word to break long words
- InlineNoteContainer: Added max-width: 100% and overflow: visible
Result:
Text in the review note input wraps within visible boundaries. The
parent container remains scrollable while the textarea itself prevents
horizontal overflow.1 parent dee39f5 commit 30dda76
File tree
1 file changed
+11
-1
lines changed1 file changed
+11
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
333 | 333 | | |
334 | 334 | | |
335 | 335 | | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
336 | 341 | | |
337 | 342 | | |
338 | 343 | | |
339 | 344 | | |
| 345 | + | |
340 | 346 | | |
341 | 347 | | |
342 | 348 | | |
| |||
347 | 353 | | |
348 | 354 | | |
349 | 355 | | |
350 | | - | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
| 360 | + | |
351 | 361 | | |
352 | 362 | | |
353 | 363 | | |
| |||
0 commit comments