We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a96a660 + cf0f7dc commit 53bf235Copy full SHA for 53bf235
test/index.js
@@ -150,6 +150,22 @@ article h6 + p {}`,
150
"should works handle multiples combined selectors"
151
)
152
153
+ t.equal(
154
+ transform(
155
+ `@custom-selector :--foo .foo;
156
+
157
+:--foo :--foo:hover {
158
+ color: white;
159
+}
160
+`
161
+ ).css,
162
+ `.foo .foo:hover {
163
164
165
+`,
166
+ "should works handle multiples combined selectors with pseudo classes"
167
+ )
168
169
t.equal(
170
transform(
171
`@custom-selector :--foo h1, h2, h3;
0 commit comments