chasegiunta / tailwindcss-important

!important variant plugin for tailwindcss framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

!important Tailwind Plugin

Installation

Add this plugin to your project:

# Install via npm
npm install --save-dev tailwindcss-important

# Install via yarn
yarn add tailwindcss-important --dev

Adding variants through plugins is currently an experimental feature in tailwind and requires version 0.6.2 or higher.

Usage

The important plugin exposes an important variant for you to use by prepending ! to your class names: !text-white !bg-black

require('tailwindcss-important')()
textColors: ['responsive', 'hover', 'important'],

Purgecss

If you're using purgecss, you'll want to update your TailwindExtractor to include !.

content.match(/[A-Za-z0-9-_:!\/]+/g) || [];

About

!important variant plugin for tailwindcss framework


Languages

Language:JavaScript 100.0%