smushed subject line and post body together, kinda

This commit is contained in:
Riedler 2024-04-26 23:43:14 +02:00
parent e7bb7fab6e
commit 2b7d22ef5b

View file

@ -551,6 +551,11 @@
line-height: 1.85;
}
.form-post-subject {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.form-post-body {
// TODO: make a resizable textarea component?
box-sizing: content-box; // needed for easier computation of dynamic size
@ -562,6 +567,8 @@
height: calc(var(--post-line-height) * 1em);
min-height: calc(var(--post-line-height) * 1em);
resize: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
&.scrollable-form {
overflow-y: auto;