leading (line-height)

This commit is contained in:
Michaël De Boey 2017-12-02 18:48:07 +01:00
parent b0326b8272
commit 8300ceebd6
No known key found for this signature in database
GPG Key ID: D14AE6F0880EF592

View File

@ -35,3 +35,37 @@ features:
],
]
])
## Customizing
### Responsive, Hover, and Focus Variants
By default, no hover, focus, or group-hover variants are generated for leading utilities.
You can control which variants are generated for the leading utilities by modifying the `leading` property in the `modules` section of your Tailwind config file.
For example, this config will _also_ generate hover and focus variants:
```js
{
// ...
modules: {
// ...
leading: ['responsive', 'hover', 'focus'],
}
}
```
### Disabling
If you aren't using the leading utilities in your project, you can disable them entirely by setting the `leading` property to `false` in the `modules` section of your config file:
```js
{
// ...
modules: {
// ...
leading: false,
}
}
```