Tobias
bf73425277
Document the possibility of extending the $spacers map
It's very handy to add another spacer size (e.g. `4`) which can easily be done by extending the map.
Example:
```
$spacers: (
0: (
x: 0,
y: 0
),
1: (
x: $spacer-x,
y: $spacer-y
),
2: (
x: ($spacer-x * 1.5),
y: ($spacer-y * 1.5)
),
3: (
x: ($spacer-x * 3),
y: ($spacer-y * 3)
),
4: (
x: ($spacer-x * 5),
y: ($spacer-y * 5)
)
);
```
Closes #18706
[skip sauce]
2016-02-18 18:18:47 -08:00
..
2016-02-17 10:53:50 +00:00
2016-01-06 23:58:07 -08:00
2015-08-21 02:15:17 +02:00
2015-08-22 21:16:05 +03:00
2016-02-17 10:53:50 +00:00
2016-02-17 10:53:50 +00:00
2015-10-27 11:42:41 -07:00
2015-10-27 11:42:41 -07:00
2015-08-25 15:38:20 +03:00
2016-02-13 17:55:23 -08:00
2016-02-07 23:48:47 -08:00
2015-12-08 03:41:51 -08:00
2016-02-17 10:53:50 +00:00
2016-02-06 21:29:30 -08:00
2016-02-08 22:13:30 -08:00
2016-01-06 15:55:49 -08:00
2016-01-11 09:47:36 +01:00
2016-01-24 13:31:27 +08:00
2016-02-08 00:39:33 -08:00
2015-10-27 11:42:41 -07:00
2016-02-17 10:53:50 +00:00
2015-12-26 20:12:51 +00:00
2016-02-18 18:18:47 -08:00