Replies: 1 comment
-
Over a year later, but bumping to add that this is a problem for me. I am porting an existing UI to Tailwind, so I have to find the closest possible values to our existing UI and ideally avoid bloating our config by extending with lots of custom types. I was similarly surprised to find the large gap between 4xl and 5xl. My initial thought was exactly the same; to add a 4.5xl to the config, which I have added, reluctantly. It seems reasonable that there would be a value between these two points. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I feel like the jump between those 2 values is a bit drastic.
Obviously it would be impractical to call it
text-4.5xl
, and it's equally impractical to shift everything down the scale and start a new major version.I find myself adding a
text-4.5xl
(2.5rem
) into my config fairly consistently.Here's what I mean:
text-xs
totext-lg
is2px
(4 values)text-lg
totext-3xl
is4px
(3 values)text-3xl
totext-4xl
is6px
(1 value)text-4xl
totext-5xl
is12px
, that's +6 instead of +2To me that feels a bit sudden, but I might be the only one 🤷
Let me know what you think
Beta Was this translation helpful? Give feedback.
All reactions