Media queries with sass

后端 未结 1 380
执笔经年
执笔经年 2021-01-12 08:07

I\'m getting errors compiling my sass files using media query mixins. I followed several tutorials, but it won\'t compile. I\'m using Sass 3.3.0.alpha.67 (Bleeding Edg

相关标签:
1条回答
  • 2021-01-12 08:24

    Doesn't seem to be an issue anymore. The slightly modified code is explained in this codepen http://codepen.io/danielcgold/pen/RRNrPQ.

    @mixin start-desktop-size {
      @media (min-width: 1024px) {
        @content;
      }
    }
    
    body { 
      @include start-desktop-size { 
        background: red; 
      } 
    }
    
    0 讨论(0)
提交回复
热议问题