Created
October 1, 2016 00:20
-
-
Save rugor/8c8d5fd669921f4a07f0cacfa9ed0067 to your computer and use it in GitHub Desktop.
SCSS: Bootstrap make column fifths
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
/* bootstrap fifths */ | |
.col-sm-fifth { | |
@include make-col-ready(); | |
@media (max-width: 34em) { | |
@include make-col(12); | |
} | |
@media (min-width: 34.1em) { | |
@include make-col(2.4); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment