Fix textarea alignment: add box-sizing border-box to prevent overflow

This commit is contained in:
Hördle Bot
2025-12-05 20:13:27 +01:00
parent 136f881252
commit dc4bdd36c7

View File

@@ -681,7 +681,8 @@ export default function Game({ dailyPuzzle, genre = null, isSpecial = false, max
fontFamily: 'inherit',
resize: 'vertical',
marginBottom: '0.5rem',
display: 'block' // Ensure block display for proper alignment
display: 'block',
boxSizing: 'border-box' // Ensure padding and border are included in width
}}
disabled={commentSending}
/>