Created
December 5, 2017 03:36
-
-
Save khoipro/d28c94091cc7b6f2c13f208af74795fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SCSS | |
$mobile-breakpoint: 320px; | |
$tablet-breakpoint: 1024px; | |
.menu-item { | |
// Mobile value | |
width: 100%; | |
@media (min-width: $mobile-breakpoint) { | |
width: 50%; | |
} | |
@media (min-width: $tablet-breakpoint) { | |
width: 33.33%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment