0.0.1 • Published 3 years ago

@kodai3/tailwind-config v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Usage

npm install @kodai3/tailwind-config

If you want to extend the existing config:

// tailwind.config.js

module.exports = {
  presets: [require("@kodai3/tailwind-config")],
  theme: {
    extend: {
      padding: {
        4: "4px",
      },
    },
  },
};

If you want to use the config as is:

// tailwind.config.js

module.exports = {
  presets: [require("@kodai3/tailwind-config")],
};