diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2021-08-13 18:53:31 -0400 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-07 19:19:31 -0500 |
| commit | 22bdcda9c0a9869f8a09507bb60215b8a5af709a (patch) | |
| tree | 83af8d801caa8c83364ac269abd52e1e03a7387a /src | |
| parent | ba8598858b4a90d25b76a515dc6a9125d2809f9d (diff) | |
Make other replies button stretch along the row
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/conversation/conversation.vue | 8 |
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; |
