Files
ostal.pl/wp-content/themes/ostal_WP/sass/01-base/_breakpoints.scss
2024-12-20 12:48:12 +01:00

21 lines
441 B
SCSS

@mixin responsive($breakpoint) {
@if $breakpoint == small-phones {
@media only screen
and (max-height: 667px) {
@content;
}
}
@if $breakpoint == tablet {
@media only screen
and (min-width: 768px) {
@content;
}
}
@if $breakpoint == desktop {
@media only screen
and (min-width: 1366px)
{
@content;
}
}
}