(probably) fix line length between note and 1st reply

This commit is contained in:
dakkar 2023-12-31 20:56:16 +00:00
parent 8e02d7f364
commit f42e2bacd4

View file

@ -437,10 +437,11 @@ if (props.detail) {
.line { .line {
position: absolute; position: absolute;
height: 100%; height: calc(100% - 58px); // 58px of avatar height (see SkNote)
left: 60px; left: 60px;
// using solid instead of dotted, stylelistic choice // using solid instead of dotted, stylelistic choice
border-left: 2.5px solid rgb(174, 174, 174); border-left: 2.5px solid rgb(174, 174, 174);
top: 86px; // 28px of .root padding, plus 58px of avatar height (see SkNote)
} }
.footer { .footer {