Skip to content

ampersand right after selector #5

@yaninataran

Description

@yaninataran

The LESS code

.btn {
    a& {
        text-decoration: none;
    }
}

is converted to

btn {
    a & {
        text-decoration: none;
    }
}

but expected something like this (see the long history of this issue here sass/sass#1425 )

mixin btn {
    @at-root a#{&} {
        text-decoration: none;
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions