Compare commits

..

No commits in common. "06b1601a7580daa9ac762cc5c4a789680f630e3a" and "9c1adfdc03dd3e96ede3f30d37cda899e9c77b35" have entirely different histories.

View file

@ -208,14 +208,14 @@
padding: 0;
}
textarea.input.form-post-body {
.input.form-post-body {
// TODO: make a resizable textarea component?
box-sizing: content-box; // needed for easier computation of dynamic size
overflow: hidden;
transition: min-height 200ms 100ms;
// stock padding + 1 line of text (for counter)
padding-bottom: calc(var(--_padding) + var(--post-line-height) * 1em);
padding-right: 0.5em;
padding-right: 1.5em;
// two lines of text
height: calc(var(--post-line-height) * 1em);
min-height: calc(var(--post-line-height) * 1em);