Skip to content

Commit 73fcdce

Browse files
Document min-h-auto and remove max-w-auto and max-h-auto (#2124)
See tailwindlabs/tailwindcss#16917
1 parent 5a77fe6 commit 73fcdce

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/docs/max-height.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export const description = "Utilities for setting the maximum height of an eleme
1111
rows={[
1212
["max-h-<number>", "max-height: calc(var(--spacing) * <number>);"],
1313
["max-h-<fraction>", "max-height: calc(<fraction> * 100%);"],
14-
["max-h-auto", "max-height: auto;"],
1514
["max-h-none", "max-height: none;"],
1615
["max-h-px", "max-height: 1px;"],
1716
["max-h-full", "max-height: 100%;"],

src/docs/max-width.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export const description = "Utilities for setting the maximum width of an elemen
2525
["max-w-5xl", "max-width: var(--container-5xl); /* 64rem (1024px) */"],
2626
["max-w-6xl", "max-width: var(--container-6xl); /* 72rem (1152px) */"],
2727
["max-w-7xl", "max-width: var(--container-7xl); /* 80rem (1280px) */"],
28-
["max-w-auto", "max-width: auto;"],
2928
["max-w-none", "max-width: none;"],
3029
["max-w-px", "max-width: 1px;"],
3130
["max-w-full", "max-width: 100%;"],

src/docs/min-height.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export const description = "Utilities for setting the minimum height of an eleme
1111
rows={[
1212
["min-h-<number>", "min-height: calc(var(--spacing) * <number>);"],
1313
["min-h-<fraction>", "min-height: calc(<fraction> * 100%);"],
14-
["min-h-auto", "min-height: auto;"],
1514
["min-h-px", "min-height: 1px;"],
1615
["min-h-full", "min-height: 100%;"],
1716
["min-h-screen", "min-height: 100vh;"],
@@ -21,6 +20,7 @@ export const description = "Utilities for setting the minimum height of an eleme
2120
["min-h-lvw", "min-height: 100lvw;"],
2221
["min-h-svw", "min-height: 100svw;"],
2322
["min-h-svh", "min-height: 100svh;"],
23+
["min-h-auto", "min-height: auto;"],
2424
["min-h-min", "min-height: min-content;"],
2525
["min-h-max", "min-height: max-content;"],
2626
["min-h-fit", "min-height: fit-content;"],

0 commit comments

Comments
 (0)