@dan Noticed yesterday that the md font size is missing from text component (both controls) and the typography component.
Tailwind CSS doesn’t include a built-in text-md class. The default font sizes use a scale like:
- text-xs
- text-sm
- text-base (serves as the default/medium size)
- text-lg
- text-xl
- text-2xl
- …and so on.
The md: prefix in Tailwind is reserved for responsive breakpoints. For example, md:text-lg means “apply text-lg on medium screens and larger.”