tailwind-capsize
A TailwindCSS plugin that generates utility classes for trimming whitespace above and below capital letters using Capsize.
$ npm install --save-dev tailwind-capsize
Configuration
This plugin requires a fontMetrics
key added to your Tailwind theme. It should be an object with keys matching those in your fontFamily
definitions, and each key should have an object of the following shape:
These values can be determined by using the Capsize demo site or by using fontkit or some other means.
A full example
// tailwind.config.jsmoduleexports = theme: fontFamily: sans: 'Inter' 'sans-serif' fontMetrics: sans: capHeight: 2048 ascent: 2728 descent: -680 lineGap: 0 unitsPerEm: 2816 fontSize: ... lineHeight: ... ... plugins:
The plugin assumes a root font-size of 16px
when converting from rem values. To use a different value, pass it in (without units) to the plugin options.
Usage
The new .capsize
utility class should be applied to the direct parent element surrounding a text node. This class only provides the neccessary styles for trimming whitespace, utility classes for setting font-family
, font-size
, and line-height
will need to be applied as well.