mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-26 10:50:25 +00:00
14 lines
296 B
SCSS
14 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;
|
|
}
|
|
}
|