fix: comment edit ctas style + dynamic textarea rows

Ref #88
This commit is contained in:
Timothée Goguely 2025-01-07 16:06:47 +01:00
parent 6cc8325d2b
commit 36d6facd8d
2 changed files with 21 additions and 4 deletions

View file

@ -387,15 +387,17 @@ function openComment(comment) {
bottom: 5.5rem;
background: #333;
}
#comments-container textarea {
#comments-container textarea:not(.comment__body) {
position: sticky;
bottom: 0;
margin: 0;
resize: none;
background: none;
padding: 0;
color: var(--color-white);
}
#comments-container textarea {
resize: none;
}
#comments-container textarea:focus {
outline: none;
}