Skip to content

Instantly share code, notes, and snippets.

View tanshunyuan's full-sized avatar

Tan Shun Yuan tanshunyuan

View GitHub Profile
@tanshunyuan
tanshunyuan / input.scss
Created March 30, 2021 12:08
Generated by SassMeister.com.
@mixin respond($class) {
@if $class == phone {
@media (max-width: 767px) {
@content;
}
} @else if $class == tablet {
@media (min-width: 768px) {
@content;
}
} @else if $class == tablet_landscape {
@tanshunyuan
tanshunyuan / input.scss
Created March 30, 2021 11:42
Generated by SassMeister.com.
@mixin respond($class) {
@if $class == phone {
@media (max-width: 767px) {
@content;
}
} @else if $class == tablet {
@media (min-width: 768px) {
@content;
}
} @else if $class == tablet_landscape {