1.0.0 • Published 5 years ago

@ky-is/tailwindcss-plugin-width-height v1.0.0

Weekly downloads
47
License
ISC
Repository
github
Last release
5 years ago

tailwindcss-plugin-width-height

Square .wh-* size utility classes for Tailwind css. For when you want a DRY way to describe a square-sized element (profile image, close button, div container, etc.).

For Tailwind v1.0:

npm install --save-dev @ky-is/tailwindcss-plugin-width-height

For Tailwind v0.x:

npm install --save-dev @ky-is/tailwindcss-plugin-width-height@0

Example

A circular avatar:

<img class="wh-16 rounded-full" />

Is equivalent to:

<img class="w-16 h-16 rounded-full" />

Config

In your tailwind js configuration file:

  plugins: [
    require('@ky-is/tailwindcss-plugin-width-height')({ variants: ['responsive'] }),
  ],

Options

  • variants (string[], optional): responsive, hover, focus, active, group-hover
  • sizes (object, optional): Custom sizes to generate (in the same format as width and height from your config file). If you don't provide this value, it defaults to the intersection of the width and height values from your config.
1.0.0

5 years ago

1.0.0-beta.1

5 years ago

0.1.1

6 years ago

0.1.0

6 years ago