diff --git a/frontend/public/global.css b/frontend/public/global.css index a92f033..266c737 100644 --- a/frontend/public/global.css +++ b/frontend/public/global.css @@ -37,6 +37,11 @@ label { display: block; } +textarea { + resize: vertical; + max-height: 500px; +} + input, button, select, textarea { font-family: inherit; font-size: inherit; diff --git a/frontend/src/components/Collapsible.svelte b/frontend/src/components/Collapsible.svelte index 94ecc5d..70a5593 100644 --- a/frontend/src/components/Collapsible.svelte +++ b/frontend/src/components/Collapsible.svelte @@ -79,7 +79,7 @@ } function updateSize() { - content.style.maxHeight = `${content.scrollHeight}px`; + content.style.maxHeight = `100%`; } function updateIfExpanded() {