forked from supple-kit/supple-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_variables.scss
33 lines (25 loc) · 1000 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
/* =========================================================================
utilities.columns.variables
========================================================================= */
/* Use rules
`@use` everything you need here from other files. Variables, mixins &
other includes.
========================================================================= */
@use '../../settings/defaults';
/* Variables
========================================================================= */
/**
* Columns, makes it easy to create several proportional columns
*/
$columns: defaults.$columns !default;
/**
* Define which namespaced queries you would like to generate for each
* of the colstarts. It allows you to only compile as much CSS as you need.
* All are empty by default, but you can add queries at will.
*
* $in-query: (lap, desk);
*
* Note: the name of the query must exist in the list of `$queries`
* in `settings/defaults`
*/
$in-query: () !default;