How do you do a media query using SASS?

后端 未结 3 778
梦如初夏
梦如初夏 2021-01-17 23:41

I\'ve read through the SASS documentation and can only find how to do a media query using scss syntax instead of sass syntax (sass is the one that has strict white space wit

3条回答
  •  旧时难觅i
    2021-01-18 00:26

    I prefer to apply it only in certain properties for example

    .jumbotron h1.pickup
        @include LATO
        font-size: 50px
        color: white !important
        @media (max-width: 767px)
            font-size: 36px
        @media (max-width: 500px)
            font-size: 30px
    

提交回复
热议问题