Skip to content

Commit

Permalink
docs(suspensive.org): update font size for SectionText
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli committed Dec 16, 2024
1 parent 40a9299 commit a8f476c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/suspensive.org/src/components/SectionText.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { ReactNode } from 'react'

export const SectionTitle = ({ children }: { children: ReactNode }) => (
<h3 className="text-1xl text-center font-bold opacity-60 md:text-2xl">
<h3 className="text-md text-center font-bold opacity-60 md:text-2xl">
{children}
</h3>
)
export const SectionDescription = ({ children }: { children: ReactNode }) => (
<h4 className="text-center text-3xl font-bold md:text-4xl">{children}</h4>
<h4 className="text-center text-2xl font-bold md:text-4xl">{children}</h4>
)

0 comments on commit a8f476c

Please sign in to comment.