Guest User

Untitled

a guest
Oct 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // grid and columns
  2. $columns: 16 !default;
  3. $gutter: 10px !default;
  4.  
  5. .grid {
  6. display: grid;
  7. grid-template-columns: repeat($columns, 1fr);
  8. grid-gap: $gutter;
  9.  
  10. .cell {
  11. @for $column from 1 through ($columns) {
  12. &.pos-#{$column} {
  13. grid-column-start: #{$column};
  14. }
  15. &.span-#{$column} {
  16. grid-column-end: span #{$column};
  17. }
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment