mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 13:10:14 +01:00
15 lines
296 B
SCSS
15 lines
296 B
SCSS
|
$breakpoint-small: $breakpoint-mobile - 0.0625em;
|
||
|
$breakpoint-medium: $breakpoint-mobile;
|
||
|
|
||
|
@mixin small {
|
||
|
@media only screen and (max-width: $breakpoint-small) {
|
||
|
@content;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin medium {
|
||
|
@media only screen and (min-width: $breakpoint-medium) {
|
||
|
@content;
|
||
|
}
|
||
|
}
|