more consistent line styling across components, kind of

which I probably should've done from the start
This commit is contained in:
Freeplay 2023-01-15 18:46:35 -05:00
parent fbabfec24b
commit c2933479b6
1 changed files with 10 additions and 3 deletions

View File

@ -147,10 +147,17 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
margin: 0; margin: 0;
} }
> .line { > .line {
background-color: var(--accentDarken); width: var(--avatarSize);
width: 2px; display: flex;
flex-grow: 1; flex-grow: 1;
margin-bottom: -30px; &::before {
content: "";
display: block;
margin-bottom: -30px;
width: 2px;
background-color: var(--accentDarken);
margin-inline: auto;
}
} }
} }
} }