Merge 5ab23eb3a70c613f81e030a4480a88e0e07818d3 into eb5f8920038ecf0b81bb61e9e61bac70b72cf4af

This commit is contained in:
Tobias Poulsen 2025-02-20 20:56:09 +01:00 committed by GitHub
commit fc94cfca03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -37,6 +37,11 @@ label {
display: block; display: block;
} }
textarea {
resize: vertical;
max-height: 500px;
}
input, button, select, textarea { input, button, select, textarea {
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;

View File

@ -79,7 +79,7 @@
} }
function updateSize() { function updateSize() {
content.style.maxHeight = `${content.scrollHeight}px`; content.style.maxHeight = `100%`;
} }
function updateIfExpanded() { function updateIfExpanded() {