-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from willofindie/fix/issue-110
fix: `node.nodes` can be empty for some rules
- Loading branch information
Showing
7 changed files
with
55 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
@import url("https://unpkg.com/[email protected]/orange.min.css"); | ||
@import url(./nested.css); | ||
|
||
@layer x01, x02; | ||
@layer x01 { | ||
.test { | ||
--test-x01: green; | ||
} | ||
} | ||
@layer x02 { | ||
.test { | ||
--test-x01: red; | ||
} | ||
} | ||
|
||
:root { | ||
--gap-sm: 0.25rem; | ||
--gap-md: 0.5rem; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@layer x01, x02; | ||
@layer x02 { | ||
.test { | ||
color: firebrick; | ||
} | ||
} | ||
@layer x01 { | ||
.test { | ||
color: limegreen; | ||
} | ||
} | ||
|
||
:root { | ||
--red100: #f00; | ||
--red500: #f24455; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters