Skip to content

Commit e545f96

Browse files
committed
add *-lh utilities
1 parent 596d9a6 commit e545f96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/default-config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -782,17 +782,17 @@ export const getDefaultConfig = () => {
782782
* Height
783783
* @see https://tailwindcss.com/docs/height
784784
*/
785-
h: [{ h: ['screen', ...scaleSizing()] }],
785+
h: [{ h: ['screen', 'lh', ...scaleSizing()] }],
786786
/**
787787
* Min-Height
788788
* @see https://tailwindcss.com/docs/min-height
789789
*/
790-
'min-h': [{ 'min-h': ['screen', 'none', ...scaleSizing()] }],
790+
'min-h': [{ 'min-h': ['screen', 'lh', 'none', ...scaleSizing()] }],
791791
/**
792792
* Max-Height
793793
* @see https://tailwindcss.com/docs/max-height
794794
*/
795-
'max-h': [{ 'max-h': ['screen', ...scaleSizing()] }],
795+
'max-h': [{ 'max-h': ['screen', 'lh', ...scaleSizing()] }],
796796

797797
// ------------------
798798
// --- Typography ---

0 commit comments

Comments
 (0)