Make other replies button stretch along the row

This commit is contained in:
Tusooa Zhu 2021-08-13 18:53:31 -04:00
parent 4648bc6f72
commit a917bdc34b
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224

View file

@ -211,9 +211,11 @@
border-bottom-color: var(--border, $fallback--border); border-bottom-color: var(--border, $fallback--border);
border-radius: 0; border-radius: 0;
/* Make the button stretch along the whole row */ /* Make the button stretch along the whole row */
display: flex; &, &-inner {
align-items: stretch; display: flex;
flex-direction: column; align-items: stretch;
flex-direction: column;
}
} }
.thread-ancestor-dive-box-inner { .thread-ancestor-dive-box-inner {
padding: $status-margin; padding: $status-margin;