File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Transforms:
6
6
7
7
``` css
8
8
:local(.continueButton ) {
9
- extends : button from " library/button.css" ;
9
+ composes : button from " library/button.css" ;
10
10
color : green ;
11
11
}
12
12
```
@@ -18,17 +18,17 @@ into:
18
18
button : __tmp_487387465fczSDGHSABb;
19
19
}
20
20
:local(.continueButton ) {
21
- extends : __tmp_487387465fczSDGHSABb;
21
+ composes : __tmp_487387465fczSDGHSABb;
22
22
color : green ;
23
23
}
24
24
```
25
25
26
26
## Specification
27
27
28
- - Only a certain whitelist of properties are inspected. Currently, that whitelist is ` ['extends '] ` alone.
28
+ - Only a certain whitelist of properties are inspected. Currently, that whitelist is ` ['composes '] ` alone.
29
29
- An extend-import has the following format:
30
30
```
31
- extends : className [... className] from "path/to/file.css";
31
+ composes : className [... className] from "path/to/file.css";
32
32
```
33
33
34
34
## Building
You can’t perform that action at this time.
0 commit comments