This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPECIFIC MOBILE FIRST BREAKPOINT MIXIN FOR SCREENS | |
@mixin bp($args: null) { | |
// CASE IF NO DATA IS PASSED WE SHALL OUTPUT MEDIA QUERY ONLY FOR SCREEN THIS MEANS STYLES WILL BE GLOBALLY AND INHERITABLE BY UPPER BREAKPOINTS | |
@if $args == null { | |
@media screen { | |
@content; | |
} | |
} | |
// CASE IF DATA IS PASSED WE GENERATE BREAKPOINT FOR PASSED BREAKPOINT | |
@else { |