blob: 1d65bb55ef767fe9c64ff6b5c025135b477c6259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* 'er' (from 'eighth-rem') is a conceptual unit of length. It is determined
* by the total width of the grid, the relative eighth rem length of the grid
* padding, and the number of columns in the grid. This means you can just
* specify those values for each breakpoint, and the rest of the nitty-gritty
* griddy details happens by SCSS magic.
*/
/**
* Breakpoints can be:
* - initial
* - xs
* - sm
* - md
* - lg
* - xl
* - xxl
*/
@forward 'constants' show $grid-column-count, $grid-prose-column-count;
@forward 'grid' as grid-* hide er-to-absolute;
@forward 'grid' show er-to-absolute;
@forward 'spacing';
|