Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. @import "../Scripts/lib/bootstrap/less/mixins/grid-framework.less";
  2.  
  3. /*col-sm-w-* is for setting with only without other properties. It uses bootstrap internal mixin*/
  4. .loop-grid-columns(@grid-columns, xs-w, width);
  5.  
  6. @media (min-width: @screen-sm-min) {
  7. .loop-grid-columns(@grid-columns, sm-w, width);
  8. }
  9.  
  10. @media (min-width: @screen-md-min) {
  11. .loop-grid-columns(@grid-columns, md-w, width);
  12. }
  13.  
  14. @media (min-width: @screen-lg-min) {
  15. .loop-grid-columns(@grid-columns, lg-w, width);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement