mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Changed replies line color to be more clear (#21879)
No ref - The line was almost invisible in dark mode, so the color has been adjusted to be slightly less transparent.
This commit is contained in:
parent
6595697864
commit
27e79a3a3d
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ const RepliesLine: React.FC<{hasReplies: boolean}> = ({hasReplies}) => {
|
|||
return null;
|
||||
}
|
||||
|
||||
return (<div className="mb-2 h-full w-px grow rounded bg-gradient-to-b from-neutral-900/10 via-neutral-900/10 to-transparent dark:from-white/10 dark:via-white/10" data-testid="replies-line" />);
|
||||
return (<div className="mb-2 h-full w-px grow rounded bg-gradient-to-b from-neutral-900/15 from-70% to-transparent dark:from-white/20 dark:from-70%" data-testid="replies-line" />);
|
||||
};
|
||||
|
||||
type CommentLayoutProps = {
|
||||
|
|
Loading…
Add table
Reference in a new issue