Permalink
Cannot retrieve contributors at this time
10 lines (9 sloc)
540 Bytes
|
// CSS Grid grid spans |
|
|
|
@for $i from 1 through 16 { |
|
.span-#{$i} { grid-column: span #{$i} } // Span cols across tracks horizontally |
|
.span-y-#{$i} { grid-row: span #{$i} } // Span cols across tracks verically |
|
.start-#{$i} { grid-column-start: #{$i} } // Define a horizontal start point |
|
.end-#{$i} { grid-column-end: #{$i} } // Define an horizontal end point |
|
.start-y-#{$i} { grid-row-start: #{$i} } // Define a vertical start point |
|
.end-y-#{$i} { grid-row-end: #{$i} } // Define an vertical end point |
|
} |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.