Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add first-class support for height media/container queries #13389

Open
wants to merge 4 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add first-class support for height media/container queries
  • Loading branch information
brandonmcconnell committed Mar 28, 2024
commit f1fc052f9891c6652816fbc398f3f6155dffdd90
46 changes: 46 additions & 0 deletions packages/tailwindcss/src/__snapshots__/intellisense.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2327,6 +2327,15 @@ exports[`getVariants 1`] = `
"sm",
],
},
{
"hasDash": true,
"isArbitrary": true,
"name": "max-h",
"selectors": [Function],
"values": [
"sm",
],
},
{
"hasDash": true,
"isArbitrary": false,
Expand All @@ -2343,6 +2352,22 @@ exports[`getVariants 1`] = `
"sm",
],
},
{
"hasDash": true,
"isArbitrary": false,
"name": "h-sm",
"selectors": [Function],
"values": [],
},
{
"hasDash": true,
"isArbitrary": true,
"name": "min-h",
"selectors": [Function],
"values": [
"sm",
],
},
{
"hasDash": true,
"isArbitrary": true,
Expand All @@ -2368,6 +2393,27 @@ exports[`getVariants 1`] = `
"4",
],
},
{
"hasDash": true,
"isArbitrary": true,
"name": "@max-h",
"selectors": [Function],
"values": [],
},
{
"hasDash": true,
"isArbitrary": true,
"name": "@-h",
"selectors": [Function],
"values": [],
},
{
"hasDash": true,
"isArbitrary": true,
"name": "@min-h",
"selectors": [Function],
"values": [],
},
{
"hasDash": true,
"isArbitrary": false,
Expand Down
Loading
Loading