Skip to content

Commit

Permalink
Tailwind 3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Jun 10, 2024
1 parent bc7078e commit 5d5803c
Show file tree
Hide file tree
Showing 3 changed files with 218 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/coreRules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,18 @@ export const getCoreRules = ({
"col-start",
theme.gridColumnStart,
"grid-column-start",
{ supportsNegativeValues: true },
),
gridColumnEnd: themeRule("col-end", theme.gridColumnEnd, "grid-column-end"),
gridColumnEnd: themeRule("col-end", theme.gridColumnEnd, "grid-column-end", {
supportsNegativeValues: true,
}),
gridRow: themeRule("row", theme.gridRow, "grid-row"),
gridRowStart: themeRule("row-start", theme.gridRowStart, "grid-row-start"),
gridRowEnd: themeRule("row-end", theme.gridRowEnd, "grid-row-end"),
gridRowStart: themeRule("row-start", theme.gridRowStart, "grid-row-start", {
supportsNegativeValues: true,
}),
gridRowEnd: themeRule("row-end", theme.gridRowEnd, "grid-row-end", {
supportsNegativeValues: true,
}),
float: [
["float-start", [["float", "inline-start"]]],
["float-end", [["float", "inline-end"]]],
Expand Down
52 changes: 52 additions & 0 deletions tests/snapshots/codegen-omit.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

156 changes: 156 additions & 0 deletions tests/snapshots/codegen.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5d5803c

Please sign in to comment.