Open
Description
It’s extremely common for SCSS developers to use @include
as shortcut for @media
queries or often-repeated selectors, .e.g.:
@include tablet {
.box {
}
}
@include dark-mode {
.menu {
}
}
However, selectors nested inside @include
don’t appear nested in the Outline View, as they would if nested in @media
since cdf4954. It’d be extremely useful to see these in the outline as well.