mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 01:53:08 +02:00
(probably) fix line length between note and 1st reply
This commit is contained in:
parent
8e02d7f364
commit
f42e2bacd4
1 changed files with 2 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue