Last active
December 19, 2015 00:49
-
-
Save rdebeasi/5871000 to your computer and use it in GitHub Desktop.
Override Bootstrap's default breakpoint for stacking to 1 column. Hopefully we'll be able to change this with a variable in Bootstrap 3.
This file contains 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
@import "mixins.less"; | |
@import "variables.less"; | |
@media (min-width: 400px) and (max-width: 767px) { | |
/* Restore standard bootstrap grid for medium-sized devices. */ | |
#grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment