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