We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
min-h-auto
max-w-auto
max-h-auto
1 parent 5a77fe6 commit 73fcdceCopy full SHA for 73fcdce
src/docs/max-height.mdx
@@ -11,7 +11,6 @@ export const description = "Utilities for setting the maximum height of an eleme
11
rows={[
12
["max-h-<number>", "max-height: calc(var(--spacing) * <number>);"],
13
["max-h-<fraction>", "max-height: calc(<fraction> * 100%);"],
14
- ["max-h-auto", "max-height: auto;"],
15
["max-h-none", "max-height: none;"],
16
["max-h-px", "max-height: 1px;"],
17
["max-h-full", "max-height: 100%;"],
src/docs/max-width.mdx
@@ -25,7 +25,6 @@ export const description = "Utilities for setting the maximum width of an elemen
25
["max-w-5xl", "max-width: var(--container-5xl); /* 64rem (1024px) */"],
26
["max-w-6xl", "max-width: var(--container-6xl); /* 72rem (1152px) */"],
27
["max-w-7xl", "max-width: var(--container-7xl); /* 80rem (1280px) */"],
28
- ["max-w-auto", "max-width: auto;"],
29
["max-w-none", "max-width: none;"],
30
["max-w-px", "max-width: 1px;"],
31
["max-w-full", "max-width: 100%;"],
src/docs/min-height.mdx
@@ -11,7 +11,6 @@ export const description = "Utilities for setting the minimum height of an eleme
["min-h-<number>", "min-height: calc(var(--spacing) * <number>);"],
["min-h-<fraction>", "min-height: calc(<fraction> * 100%);"],
- ["min-h-auto", "min-height: auto;"],
["min-h-px", "min-height: 1px;"],
["min-h-full", "min-height: 100%;"],
["min-h-screen", "min-height: 100vh;"],
@@ -21,6 +20,7 @@ export const description = "Utilities for setting the minimum height of an eleme
21
20
["min-h-lvw", "min-height: 100lvw;"],
22
["min-h-svw", "min-height: 100svw;"],
23
["min-h-svh", "min-height: 100svh;"],
+ ["min-h-auto", "min-height: auto;"],
24
["min-h-min", "min-height: min-content;"],
["min-h-max", "min-height: max-content;"],
["min-h-fit", "min-height: fit-content;"],
0 commit comments