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;
|
margin: 0;
|
||||||
}
|
}
|
||||||
> .line {
|
> .line {
|
||||||
background-color: var(--accentDarken);
|
width: var(--avatarSize);
|
||||||
width: 2px;
|
display: flex;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
margin-bottom: -30px;
|
margin-bottom: -30px;
|
||||||
|
width: 2px;
|
||||||
|
background-color: var(--accentDarken);
|
||||||
|
margin-inline: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue