From e244553fa1323ff8c53ce2c3564338e79a2cce0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Sat, 2 Dec 2017 18:49:14 +0100 Subject: [PATCH] lists --- docs/source/docs/lists.blade.md | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/docs/source/docs/lists.blade.md b/docs/source/docs/lists.blade.md index 86c374a5b..18079cd24 100644 --- a/docs/source/docs/lists.blade.md +++ b/docs/source/docs/lists.blade.md @@ -20,3 +20,37 @@ features: ], ] ]) + +## Customizing + +### Responsive, Hover, and Focus Variants + +By default, no hover, focus, or group-hover variants are generated for list utilities. + +You can control which variants are generated for the list utilities by modifying the `lists` property in the `modules` section of your Tailwind config file. + +For example, this config will _also_ generate hover and focus variants: + +```js +{ + // ... + modules: { + // ... + lists: ['responsive', 'hover', 'focus'], + } +} +``` + +### Disabling + +If you aren't using the list utilities in your project, you can disable them entirely by setting the `lists` property to `false` in the `modules` section of your config file: + +```js +{ + // ... + modules: { + // ... + lists: false, + } +} +```