Skip to content

Commit

Permalink
fix(typography): correct sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed May 7, 2022
1 parent 0fb1a27 commit b672354
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

@layer utilities {
.jonas-thelemann-prose {
@apply m-auto prose-sm sm:prose lg:prose-lg xl:prose-xl;
@apply m-auto prose prose-sm sm:prose-base lg:prose-lg xl:prose-xl; /* 2xl:prose-2xl */
}
}
3 changes: 2 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ module.exports = {
12: { raw: '(min-aspect-ratio: 2/1)' },
},
typography: (theme) => ({
sm: prose(theme),
DEFAULT: prose(theme),
sm: prose(theme),
base: prose(theme),
lg: prose(theme),
xl: prose(theme),
'2xl': prose(theme),
Expand Down

0 comments on commit b672354

Please sign in to comment.