mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 13:10:14 +01:00
af942a27e4
- Automated reformatting - Manually change code where Prettier reformatting causes issues - Revert "Disable Prettier formatting in CI for now"
31 lines
879 B
SCSS
31 lines
879 B
SCSS
// Based upon the fine work and thoughts from Bootstrap v4.
|
|
// Copyright 2011-2018 The Bootstrap Authors
|
|
// Copyright 2011-2018 Twitter, Inc.
|
|
// Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
|
|
// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
|
|
// Makes the @content apply to the given breakpoint and wider.
|
|
@mixin media-breakpoint-up($name) {
|
|
$min: breakpoint-min($name);
|
|
@if $min {
|
|
@media screen and (min-width: $min) {
|
|
@content;
|
|
}
|
|
} @else {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
|
|
// Makes the @content apply to the given breakpoint and narrower.
|
|
@mixin media-breakpoint-down($name) {
|
|
$max: breakpoint-max($name);
|
|
@if $max {
|
|
@media screen and (max-width: $max) {
|
|
@content;
|
|
}
|
|
} @else {
|
|
@content;
|
|
}
|
|
}
|