/tailwind-dot

do stuff like `bg.red.200` instead of `bg-red-200`

Primary LanguageJavaScriptMIT LicenseMIT

tailwind-dot

do stuff like bg.red.200 instead of bg-red-200

Installation

Install the plugin from npm:

npm install -D tailwind-dot

Then add the plugin to your tailwind.config.js file:

module.exports = {
    theme: {
        // ...
    },
    plugins: [
        require("tailwind-dot"),
        // ...
    ],
};