Answer the question
In order to leave comments, you need to log in
Shortening commands (autocomplete) scss in vs code - how?
That means I created a mixin, manually, without abbreviations like emmet for css, so be it:
@mixin title($weight: 400, $size: 40px, $color: $color_dark) {
font-weight: $weight;
font-size: $size;
color: $color;
}
@include
@include title ($weight: 500, $size: 36px, $color: $color_light);
In fact, every time I have to write all this manually and remember what the variables are called. Is there any plugin that will substitute the variables from the mixin into the include? @in.title
@include title ($weight: , $size: , $color: );
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question