Adam Wathan
Adam Wathan
### Describe the bug Right now when you minify certain color syntaxes, cssnano converts them to a different color format, for example RGB values are often converted to HSL: ```css...
Cascade layers support a few things that Lightning CSS doesn't currently take into consideration: - Nested layers both by nesting directly as well as using dot notation to insert into...
Not sure if this is by design or not but I expected after #133 that class names would be escaped by default when creating a new className node. ```js const...
**What version of Tailwind CSS are you using?** v3 and v4 **Reproduction URL** https://play.tailwindcss.com/ySYgzSn5FT **Describe your issue** Classes like `supports-[font-format(opentype)]:grid` generate invalid CSS, because we currently assume that supports values...
This PR improves our sorting algorithm to better handle situations where two utilities have the same set of unique properties but one has more total declarations than the other. This...
Resolves #15170. This PR adds support for bare integer values to the `col-*` and `row-*` utilities: ```css .col-5 { grid-column: 5; } .row-6 { grid-row: 6; } ``` These properties...
This PR adds a new set of `radius-*` utilities to replace the existing `rounded-*` utilities. These utilities derive their values from the `--spacing-*` scale by default, but can also be...