I know following can be done in bourbon neat:
$mobile: new-breakpoint(max-width: 320px);
$tablet: new-breakpoint(max-width:760px min-width:321px);
$desktop: new-breakpoint(min-width: 761px);
then I can do something like this:
@include media($mobile) {
// some styling
}
It works great. Now I have to add styles that affects mobile and tablet. I am looking for union of mobile and tablet breakpoint.
//desired behavior
//I know this is not available. Just made up
@include media($mobile, $tablet) {
// some styling.
// this should be applied to mobile and tablet
}