tailwind-not-last-child
v2.0.1
Published
Writing mode plugin for tailwindcss framework
Maintainers
Readme
Not last child
Currently this only works with padding and margin
Installation
Add this plugin to your project:
# Install via npm
npm install --save-dev tailwind-not-last-childIt will generate a not:(:last-child) selector for each of the padding/margin properties set in your tailwind config
eg.
<div class="not-last-mb-0-75"></div>Usage
require('tailwind-not-last-child')({
notable: [
{
type: 'margin',
char: 'm'
},
{
type: 'padding',
char: 'p'
}
]
}).not\:last-mb-0-75:not(:last-child) {
margin-bottom: .9375rem;
}