lessphp icon indicating copy to clipboard operation
lessphp copied to clipboard

@media in mixins

Open egor-sorokin opened this issue 8 years ago • 0 comments

Hi, I would like to make own mixin wtih mediaqueries like this.

.breakpoint(@maxWidth) {
  @media screen and (max-width: @maxWidth) {
    @content;
  }
}

But it doesn't work. Support it lessphp or not? If not, how can I fix it? P.S. I don't want to make a lot of copies of this rule (@media screen and (max-width: @maxWidth)) in my all .less files. Thanks!

egor-sorokin avatar Jan 18 '16 04:01 egor-sorokin