Skip to content

Commit b0326b8

Browse files
committed
height
1 parent cce6d10 commit b0326b8

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

docs/source/docs/height.blade.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,37 @@ features:
101101
],
102102
]
103103
])
104+
105+
## Customizing
106+
107+
### Responsive, Hover, and Focus Variants
108+
109+
By default, no hover, focus, or group-hover variants are generated for height utilities.
110+
111+
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.
112+
113+
For example, this config will _also_ generate hover and focus variants:
114+
115+
```js
116+
{
117+
// ...
118+
modules: {
119+
// ...
120+
height: ['responsive', 'hover', 'focus'],
121+
}
122+
}
123+
```
124+
125+
### Disabling
126+
127+
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:
128+
129+
```js
130+
{
131+
// ...
132+
modules: {
133+
// ...
134+
height: false,
135+
}
136+
}
137+
```

0 commit comments

Comments
 (0)