postcss-sparrow-auto-text-indent
v0.1.6
Published
A PostCSS Sparrow plugin that would automatically create text-indent rules for you, when letter-spacing is found.
Downloads
9
Maintainers
Readme
PostCSS Sparrow Auto Text Indent
A PostCSS Sparrow plugin that helps you append text-indent
to a selector when letter-spacing
is found, in order to center words correctly.
/* Before transformations */
.foo {
letter-spacing: 10px;
}
/* After transformations */
.foo {
letter-spacing: 10px;
text-indent: 10px;
}
Why do I need this plugin?
Letter spacing is added to the right instead of in between characters, thus you will need to offset it with text-indent
or padding-left
in order to center it correctly with text-align: center
.
This plugin helps you achieve this automatically, which is particularly useful if you use Tailwind CSS, as you do not need to create a new utility class for text-indent
.
Installation
This plugin require you to use PostCSS Sparrow for matching with selectors you want.
Download both postcss-sparrow
and this plugin through NPM.
npm i postcss-sparrow postcss-sparrow-auto-text-indent
Then import this plugin as the callback for PostCSS Sparrow.
//postcss.config.js
module.exports = {
plugins: [
//Other plugins...
require('postcss-sparrow')({
transformations: [
{
selectors: ['*'],
inclusion: true,
callbacks: [
require('postcss-sparrow-auto-text-indent')
]
}
]
})
]
}
Full Code example
/* Before transformations */
.foo {
letter-spacing: 10px;
}
//postcss.config.js
module.exports = {
plugins: [
//Other plugins...
require('postcss-sparrow')({
transformations: [
{
selectors: ['*'],
inclusion: true,
callbacks: [
require('postcss-sparrow-auto-text-indent')
]
}
]
})
]
}
/* After transformations */
.foo {
letter-spacing: 10px;
text-indent: 10px;
}
Configuration
No configuration is needed for this plugin. To prevent this plugin from appending text-indent
to a selector, you should config the selectors
options of PostCSS Sparrow.