forked from supple-kit/supple-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_tools.scss
32 lines (23 loc) · 841 Bytes
/
_tools.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
/* =========================================================================
utilities.colstart.tools
Functions and/or mixins used in this module
========================================================================= */
/* Use rules
`@use` everything you need here from other files. Variables, mixins &
other includes.
========================================================================= */
/**
* Use the settings & tools in this sheet
*/
@use './variables';
/* Functions
========================================================================= */
/* Mixins
========================================================================= */
@mixin build ($modifier: '') {
@for $i from 1 through variables.$columns {
.u-colstart-#{$i}#{$modifier} {
--colstart: #{$i};
}
}
}