style: properties panel text area

This commit is contained in:
Maze Winther
2025-07-10 19:44:24 +02:00
parent 2fe67febd6
commit 4d0c3268cc
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ export function PropertiesPanel() {
<Textarea
placeholder="Name"
defaultValue={element.content}
className="min-h-[4.5rem]"
className="min-h-[4.5rem] resize-none"
onChange={(e) =>
updateTextElement(trackId, element.id, { content: e.target.value })
}