You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@includecomponent(main) {
@includecomponent(module) {
// standard title stay at the left@includepart(title) {
float: left;
}
// if module has the --title-at-right option,// the title should stay at the right@includeoption(title-at-right) {
@includepart(title) {
float: right;
}
}
}
]
Given this markup
And that SCSS
This compiled CSS outputs
But
.main
should not be nested under the.module
component. The right result should be:Nesting a part under a option should print only the first grade parent component, and not all hierarchy.
The text was updated successfully, but these errors were encountered: