Skip to content
Merged
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
Prev Previous commit
Next Next commit
remove idx
  • Loading branch information
RobinMalfait committed Apr 3, 2025
commit cad60cb17ad3495fcb2f2514834d479c75f1bc81
2 changes: 1 addition & 1 deletion packages/tailwindcss/src/utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5834,7 +5834,7 @@ export function createCssUtility(node: AtRule) {
}
fn.nodes = ValueParser.parse(args.join(','))

for (let [idx, node] of fn.nodes.entries()) {
for (let node of fn.nodes) {
// Track literal values
if (
node.kind === 'word' &&
Expand Down