mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
Dynamic mixins with more than one level of nesting wouldn't work. This is now fixed. Also refactored mixin.definition.eval a little.
7 lines
72 B
CSS
7 lines
72 B
CSS
.class .inner {
|
|
height: 300;
|
|
}
|
|
.class .inner .innest {
|
|
width: 30;
|
|
}
|