Skip to content

Commit

Permalink
rm transition colors
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusmarminge committed Apr 24, 2023
1 parent 2c2df99 commit a455ebf
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions docs/mdx-components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,15 @@ export function useMDXComponents(components: MDXComponents): MDXComponents {
),
h2: (props) => (
<h2
className="mt-10 scroll-m-20 border-b pb-2 font-cal text-3xl transition-colors first:mt-0"
className="mt-10 scroll-m-20 border-b pb-2 font-cal text-3xl first:mt-0"
{...props}
/>
),
h3: (props) => (
<h3
className="mt-8 scroll-m-20 font-cal text-2xl text-foreground"
{...props}
/>
<h3 className="mt-8 scroll-m-20 font-cal text-2xl" {...props} />
),
h4: (props) => (
<h4
className="m-0 scroll-m-20 font-cal text-xl text-foreground"
{...props}
/>
<h4 className="m-0 scroll-m-20 font-cal text-xl" {...props} />
),
p: (props) => (
<p className="leading-7 [&:not(:first-child)]:mt-6" {...props} />
Expand Down

1 comment on commit a455ebf

@vercel
Copy link

@vercel vercel bot commented on a455ebf Apr 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

t3-env – ./

t3-env-git-main-t3-oss.vercel.app
t3-env-t3-oss.vercel.app
t3-env.vercel.app

Please sign in to comment.