Is it possible to create a media query using
@include media-breakpoint-up(900px)
in Bootstrap 4?
For example, if I have the following code:
@include media-breakpoint-up(900px){
body: border 2px solid;
}
Will the output in the .css file be without the media query -> similar to this
Or is it necessary to create a new breakpoint like this:
$grid-breakpoints: (
// default breakpoints
custom-lg: 90px,
);
And then use it like so:
@include media-breakpoint-up(custom-lg){
body: border 2px solid;
}