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