prose-s, prose-xs?
#17670
Replies: 1 comment 1 reply
-
You can add your own sizes by customizing the CSS like: /** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
typography: {
// Introduces prose-s.
s: {
css: {
// …
},
},
// Introduces prose-xs.
xs: {
css: {
// …
},
},
},
},
},
} Otherwise to change it in the code itself, there's quite a few lines to add per size. For example, there's about 200 lines for |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What do you think about adding much smaller content sizes? Is it possible for me to manage this without making significant changes?
Currently we have 0.875rem as the smaller one;
What about 0.5 rem?
Beta Was this translation helpful? Give feedback.
All reactions