gil.ink/scss/_media.scss

22 lines
491 B
SCSS
Raw Normal View History

@mixin breakpoint($point) {
2025-05-01 14:24:16 -04:00
@if $point == small {
@media only screen and (min-width: 600px) {
@content;
}
2025-05-01 14:24:16 -04:00
} @else if $point == medium {
@media only screen and (min-width: 768px) {
@content;
}
2025-05-01 14:24:16 -04:00
} @else if $point == large {
@media only screen and (min-width: 992px) {
@content;
}
2025-05-01 14:24:16 -04:00
} @else if $point == x-large {
@media only screen and (min-width: 1200px) {
@content;
}
2025-05-01 14:24:16 -04:00
} @else {
@error "Unknown breakpoint #{$point}.";
}
2025-05-01 14:24:16 -04:00
}