diff options
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/SkNoteSub.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/components/SkNoteSub.vue b/packages/frontend/src/components/SkNoteSub.vue index f5a3f08b91..bc482294b4 100644 --- a/packages/frontend/src/components/SkNoteSub.vue +++ b/packages/frontend/src/components/SkNoteSub.vue @@ -437,10 +437,11 @@ if (props.detail) { .line { position: absolute; - height: 100%; + height: calc(100% - 58px); // 58px of avatar height (see SkNote) left: 60px; // using solid instead of dotted, stylelistic choice border-left: 2.5px solid rgb(174, 174, 174); + top: 86px; // 28px of .root padding, plus 58px of avatar height (see SkNote) } .footer { |