diff --git a/frontend/public/global.css b/frontend/public/global.css index 1003b25..266c737 100644 --- a/frontend/public/global.css +++ b/frontend/public/global.css @@ -39,6 +39,7 @@ label { textarea { resize: vertical; + max-height: 500px; } input, button, select, textarea { 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() {