Skip to content

Commit 8ea4b6e

Browse files
committed
changing extends to composes and everything is passing!
1 parent a578d0e commit 8ea4b6e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.b {
2-
extends: d from "./d.css";
2+
composes: d from "./d.css";
33
color: #bbb;
44
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.a {
2-
extends: b from "./b.css";
3-
extends: c from "./c.css";
2+
composes: b from "./b.css";
3+
composes: c from "./c.css";
44
color: #aaa;
55
}
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.localName {
2-
extends: blackShadow from "./colors.css";
2+
composes: blackShadow from "./colors.css";
33
color: red;
44
}

0 commit comments

Comments
 (0)