visually fuse CW line and post body textarea #401

Merged
floatingghost merged 2 commits from Riedler/akkoma-fe:fuse-cw-to-post-body into develop 2024-06-17 21:40:27 +00:00
Showing only changes of commit 3ebaba6fa7 - Show all commits

View file

@ -584,6 +584,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
@ -595,6 +600,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;