Skip to content

Commit

Permalink
fix: make comment borders less harsh
Browse files Browse the repository at this point in the history
  • Loading branch information
sunaurus committed Apr 14, 2024
1 parent 49ec5ef commit c907898
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/comment/CommentTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export const CommentTree = memo(
}) => {
return (
<div
className={classNames("group mt-4 border-neutral-700", {
"border-l": !!props.node.parent,
"border-t pt-4": !props.node.parent,
className={classNames("group mt-4 border-neutral-600", {
"border-l border-dashed ": !!props.node.parent,
"border-t border-dashed pt-4": !props.node.parent,
})}
>
<Comment
Expand Down

0 comments on commit c907898

Please sign in to comment.