Skip to content

Commit

Permalink
make cms h2s smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
saml33 committed Feb 5, 2024
1 parent 1c44792 commit 75908a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/components/rich-text/RichText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const Text = ({ children }) => (
</p>
)

const H2 = ({ children }) => <h2 className="text-3xl">{children}</h2>
const H2 = ({ children }) => <h2 className="text-2xl">{children}</h2>
const H3 = ({ children }) => <h3 className="mb-2 text-xl">{children}</h3>
const H4 = ({ children }) => <h3 className="mb-1.5 text-lg">{children}</h3>
const Ul = ({ children }) => (
Expand Down Expand Up @@ -171,5 +171,5 @@ const A = ({ node, children }) => {
}

const Spacer = () => (
<hr style={{ borderColor: 'transparent', marginBottom: '12px' }} />
<hr style={{ borderColor: 'transparent', marginBottom: '16px' }} />
)
2 changes: 1 addition & 1 deletion tsconfig.tsbuildinfo

Large diffs are not rendered by default.

0 comments on commit 75908a6

Please sign in to comment.