Skip to content

Instantly share code, notes, and snippets.

View guidofs's full-sized avatar

guidofs

View GitHub Profile
@guidofs
guidofs / _mixins.scss
Last active September 8, 2021 15:56
Mixins Responsive Design
@mixin phone {
@media only screen and (max-width: 767px) {
@content;
}
}
@mixin tablet {
@media only screen and (min-width: 768px) {
@content;