Skip to content

Commit 7242370

Browse files
authored
Fix horizontal divider on light (#1997)
## Checklist - [ ] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [ ] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [ ] I have not broken the cheatsheet
1 parent 2df07ac commit 7242370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cursorless-org/src/components/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const components: MDXComponents = {
2727
{children}
2828
</h4>
2929
),
30-
hr: () => <hr className="my-8 border-white" />,
30+
hr: () => <hr className="my-8 border-black dark:border-white" />,
3131
ul: ({ children }) => <ul className="list-disc ml-8">{children}</ul>,
3232
ol: ({ children }) => <ol className="list-decimal ml-8">{children}</ol>,
3333
li: ({ children }) => <li className="my-2">{children}</li>,

0 commit comments

Comments
 (0)