Compare commits

...

2 Commits

Author SHA1 Message Date
Hördle Bot
223eb62973 Bump version to 0.1.6.15 2025-12-05 20:13:31 +01:00
Hördle Bot
dc4bdd36c7 Fix textarea alignment: add box-sizing border-box to prevent overflow 2025-12-05 20:13:27 +01:00
2 changed files with 3 additions and 2 deletions

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}
/>

View File

@@ -1,6 +1,6 @@
{
"name": "hoerdle",
"version": "0.1.6.14",
"version": "0.1.6.15",
"private": true,
"scripts": {
"dev": "next dev",