Package Exports
- tailwindcss-hyphens
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tailwindcss-hyphens) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
tailwindcss-hyphens
A plugin for Tailwind CSS to create
utility classes for hyphens
.
Requirements
This plugin requires Tailwind CSS v1.x.
Installation
npm install --save-dev tailwindcss-hyphens
or
yarn add --dev tailwindcss-hyphens
Usage
In your tailwind.config.js:
module.exports = {
// …
plugins: [
// …
require("tailwindcss-hyphens")
// …
]
// …
};
Utilities
By default, this plugin generates the following utilities:
.hyphens-none {
hyphens: none;
}
.hyphens-manual {
hyphens: manual;
}
.hyphens-auto {
hyphens: auto;
}
Customization
If you need a utility class for a non-standard value, you can customize this in tailwind.config.js:
module.exports = {
theme: {
// …
hyphens: {
"foo-bar": "foo-bar"
}
// …
}
// …
};
This would generate the following utility class:
.hyphens-foo-bar {
hyphens: foo-bar;
}