// Responsive
@mixin mobile() { @media screen and (max-width:767px) { @content; } } // @include mobile { }
@mixin desktop() { @media screen and (min-width:768px) { @content; } } // @include desktop { }
@mixin tablet() { @media screen and (max-width:1024px) { @content; } } // @include tablet { }
