This package has been deprecated

Author message:

WARNING: This project has been renamed to tailwindcss-capsize. Install using tailwindcss-capsize instead.

tailwind-capsize
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

tailwind-capsize

npm version

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:

{
    ascentnumber
    descentnumber
    lineGapnumber
    unitsPerEmnumber
    capHeightnumber
}

These values can be determined by using the Capsize demo site or by using fontkit or some other means.

A full example

// tailwind.config.js
module.exports = {
    theme: {
        fontFamily: {
            sans: ['Inter', 'sans-serif'],
        },
        fontMetrics: {
            sans: {
                capHeight: 2048,
                ascent: 2728,
                descent: -680,
                lineGap: 0,
                unitsPerEm: 2816,
            },
        },
        fontSize: { ... },
        lineHeight: { ... },
        ...
    },
    plugins: [require('tailwind-capsize')],
}

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.

require('tailwind-capsize').default({ rootSize: 12 })

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.

Package Sidebar

Install

npm i tailwind-capsize

Weekly Downloads

7

Version

1.0.3

License

ISC

Unpacked Size

32.1 kB

Total Files

17

Last publish

Collaborators

  • stormwarning