mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-11 10:46:16 +02:00
24 lines
367 B
SCSS
24 lines
367 B
SCSS
@use "../variables" as *;
|
|
|
|
@mixin breakpoint-xs {
|
|
@content;
|
|
}
|
|
|
|
@mixin breakpoint-sm {
|
|
@media screen and (min-width: $layout-breakpoint-sm) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin breakpoint-md {
|
|
@media screen and (min-width: $layout-breakpoint-md) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin breakpoint-lg {
|
|
@media screen and (min-width: $layout-breakpoint-lg) {
|
|
@content;
|
|
}
|
|
}
|