tailwind-dot
v0.0.1
Published
do stuff like `bg.red.200` instead of `bg-red-200`
Downloads
3
Readme
tailwind-dot
do stuff like
bg.red.200
instead ofbg-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"),
// ...
],
};