mirror of
https://github.com/less/less.js.git
synced 2026-02-02 19:15:04 -05:00
23 lines
194 B
Plaintext
23 lines
194 B
Plaintext
@charset "UTF-8";
|
|
|
|
@import "import/test.less";
|
|
|
|
.start() {
|
|
.test2 {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.mix() {
|
|
color: black;
|
|
}
|
|
|
|
.test1 {
|
|
.mix();
|
|
}
|
|
|
|
.start();
|
|
|
|
.mixin_import1();
|
|
|
|
.mixin_import2(); |