バーボンニートで次のことができることを私は知っています:
$mobile: new-breakpoint(max-width: 320px);
$tablet: new-breakpoint(max-width:760px min-width:321px);
$desktop: new-breakpoint(min-width: 761px);
次に、次のようなことができます。
@include media($mobile) {
// some styling
}
それはうまくいきます。次に、モバイルとタブレットに影響するスタイルを追加する必要があります。モバイルとタブレットのブレークポイントの結合を探しています。
//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
}