File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
test/test-cases/constants Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1- @let small: (max-width : 599px );
1+ @let small (max-width : 599px );
2+ @let medium (min-width : 600px ) and (max-width : 959px );
3+ @let large (min-width : 960px );
Original file line number Diff line number Diff line change 1313 background : white;
1414 }
1515}
16+ @media (min-width : 600px ) and (max-width : 959px ) {
17+ ._constants_source__foo {
18+ background : peru;
19+ }
20+ }
Original file line number Diff line number Diff line change 11@let borders: "./borders.css" , breakpoints : "./breakpoints.css" ;
2- @-import small from breakpoints;
2+ @-import small, medium from breakpoints;
33@import secondary, primary as blue from "./colors.css" ;
44
55.foo {
1313 background : white;
1414 }
1515}
16+ @media medium {
17+ .foo {
18+ background : peru;
19+ }
20+ }
You can’t perform that action at this time.
0 commit comments