Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
- name: Run linting
run: pnpm lint

- name: Check code formatting
run: pnpm format:check
# - name: Check code formatting
# run: pnpm format:check

- name: Run tests
run: pnpm test
Expand Down
6 changes: 6 additions & 0 deletions apps/docs/mdx-components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ export function useMDXComponents(components: MDXComponents): MDXComponents {
{...props}
/>
),
a: (props: React.ComponentProps<'a'>) => (
<a
className="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300 underline decoration-2 underline-offset-2 hover:decoration-blue-800 dark:hover:decoration-blue-300 transition-colors duration-200 font-medium"
{...props}
/>
),
// Custom components
CodeBlock,
ApiTable,
Expand Down
Loading
Loading