We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e53a94 commit c2620e5Copy full SHA for c2620e5
apps/web/components/text-divider.tsx
@@ -3,9 +3,9 @@ import type { PropsWithChildren } from "react";
3
export function TextDivider({ children }: PropsWithChildren) {
4
return (
5
<div className="mt-10 flex items-center gap-6 text-base">
6
- <hr className="grow" />
+ <hr className="grow border-gray-200 dark:border-gray-700" />
7
<span>{children}</span>
8
9
</div>
10
);
11
}
0 commit comments