-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
_variables.scss
33 lines (28 loc) · 932 Bytes
/
_variables.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* ==========================================================================
objects.mesh.variables
/ =========================================================================== */
@use '../../settings/defaults';
/**
* Number of default columns, can be overwritten per component with custom
* properties.
*/
$columns: defaults.$columns !default;
/**
* The `gap` map
*/
$gaps: ('base') !default;
/**
* Flow inline-size
*/
$flow-min-inline-size: 200px !default;
/**
* Define which namespaced queries you would like to generate for `row`.
* This is handy if you only need `row` on, say, desk, or you only need `row`
* at mobile sizes. It allows you to only compile as much CSS as you need.
* All are empty by default, but you can add queries at will:
$row-in-query: (lap, desk);
*
* Note: the name of the query must exist in the list of `$queries`
* in `settings/responsive`
*/
$row-in-query: () !default;