antd-theme-generator
Version:
This a script to generate color specific styles less file and which you can use to change theme dynamically in browser
26 lines (21 loc) • 309 B
text/less
.wrapper(@another-mixin) {
@another-mixin();
}
.something(foo) {
width: 10px;
}
.output-height() {
height: 10px;
}
.rule-1 {
@alias: .something(foo);
@alias();
}
.rule-2 {
@alias: .something(foo);
.wrapper(@alias);
}
.rule-3 {
.wrapper(.something(foo));
.wrapper(.output-height());
}