I have a few breakpoints set:
$breakpoint-tiny : 0 767px;
$breakpoint-small : 768px 991px ;
$breakpoint-medium : 992px 1229px;
$breakpoint-large : 1230px;
I saw in the breakpoint docs
You can also write OR media queries, allowing you to write multiple different basic or compound media queries and have them apply if any of the sets of queries match.
What I'd like to do is use these or queries to target multiple breakpoints when needed in my code. For example:
@include breakpoint($breakpoint-medium, $breakpoint-large){
.mobile-navigation{display: none;}
}
Is this possible?