-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Labels
Description
To reproduce:
.main{
@layer{
&::before{
color:#f00;
}
}
}
Current behavior:
Nesting selector &
lost in @layer
.
But other @ rules works well, such as @media
, @container
etc.
@layer {
::before {
color: #f00;
}
}
Expected behavior:
Nesting selector &
resolved as its scope selector.
@layer {
.main::before {
color: #f00;
}
}
Environment information:
less
version: 4.2.0