Skip to content

Commit c2620e5

Browse files
committed
style(TextDivider): update hr elements to include border colors for improved visibility
1 parent 0e53a94 commit c2620e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/components/text-divider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import type { PropsWithChildren } from "react";
33
export function TextDivider({ children }: PropsWithChildren) {
44
return (
55
<div className="mt-10 flex items-center gap-6 text-base">
6-
<hr className="grow" />
6+
<hr className="grow border-gray-200 dark:border-gray-700" />
77
<span>{children}</span>
8-
<hr className="grow" />
8+
<hr className="grow border-gray-200 dark:border-gray-700" />
99
</div>
1010
);
1111
}

0 commit comments

Comments
 (0)