vscode-less icon indicating copy to clipboard operation
vscode-less copied to clipboard

[BUG] Intellisense throwing errors for mixins

Open michael-letcher opened this issue 7 years ago • 0 comments

Throwing errors due to using this mixin that uses a pram as a function

.responsive(@maxWidth, @rules) {
    @media only screen and (max-width: @maxWidth) {
        @rules();
    }
}

Errors when using like so. (** ... ** showing where it is showing an error)

.responsive(@grid-md-max, {
    **.**grid-item(@column-start: @column-start-md; **@column-end**: @column-end-md; @row-start: @row-start-md; @row-end: @row-end-md;
               @columns: @columns-md; @rows: @rows-md
    **)**;
**}**);

michael-letcher avatar Dec 10 '18 23:12 michael-letcher