aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTusooa Zhu <tusooa@kazv.moe>2021-08-13 18:53:31 -0400
committerTusooa Zhu <tusooa@kazv.moe>2022-03-07 19:19:31 -0500
commit22bdcda9c0a9869f8a09507bb60215b8a5af709a (patch)
tree83af8d801caa8c83364ac269abd52e1e03a7387a
parentba8598858b4a90d25b76a515dc6a9125d2809f9d (diff)
Make other replies button stretch along the row
-rw-r--r--src/components/conversation/conversation.vue8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue
index 9aea7b20..6c8c6ef0 100644
--- a/src/components/conversation/conversation.vue
+++ b/src/components/conversation/conversation.vue
@@ -211,9 +211,11 @@
border-bottom-color: var(--border, $fallback--border);
border-radius: 0;
/* Make the button stretch along the whole row */
- display: flex;
- align-items: stretch;
- flex-direction: column;
+ &, &-inner {
+ display: flex;
+ align-items: stretch;
+ flex-direction: column;
+ }
}
.thread-ancestor-dive-box-inner {
padding: $status-margin;