Personal-Website/sass/responsive.scss

5 lines
91 B
SCSS

@mixin respond-to($breakpoint) {
@media (max-width: $width) {
@content;
}
}