more consistent line styling across components, kind of
which I probably should've done from the start
This commit is contained in:
parent
fbabfec24b
commit
c2933479b6
|
@ -147,10 +147,17 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
|
|||
margin: 0;
|
||||
}
|
||||
> .line {
|
||||
background-color: var(--accentDarken);
|
||||
width: 2px;
|
||||
width: var(--avatarSize);
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
margin-bottom: -30px;
|
||||
&::before {
|
||||
content: "";
|
||||
display: block;
|
||||
margin-bottom: -30px;
|
||||
width: 2px;
|
||||
background-color: var(--accentDarken);
|
||||
margin-inline: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue