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

View file

@ -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;
}
}
}
}