yummacss 3.0.1 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/abstracts/mixins/_create-colors.scss +6 -4
- package/src/abstracts/mixins/_index.scss +0 -1
- package/src/utilities/_color.scss +15 -28
- package/src/utilities/_flexbox.scss +39 -122
- package/src/utilities/_grid.scss +45 -0
- package/dist/cli/lang.js +0 -23
- package/dist/cli/utils/cli-ui.js +0 -13
- package/dist/cli/utils/ui.js +0 -15
- package/src/abstracts/mixins/_extend-utilities.scss +0 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yummacss",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "A CSS framework for the web with abbreviated styles.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css-framework",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
|
-
"url": "https://github.com/yumma-lib/yumma-css"
|
|
35
|
+
"url": "git+https://github.com/yumma-lib/yumma-css.git"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build:cli": "tsc -p tsconfig.cli.json",
|
|
39
39
|
"build:css": "gulp build",
|
|
40
|
-
"build": "pnpm build:cli",
|
|
40
|
+
"build": "pnpm build:css && pnpm build:cli",
|
|
41
41
|
"dev": "tsc -p tsconfig.cli.json --watch",
|
|
42
42
|
"format:cli": "pnpx prettier --write cli",
|
|
43
43
|
"prepublishOnly": "pnpm build:cli"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use "sass:color";
|
|
2
2
|
|
|
3
|
-
@mixin
|
|
3
|
+
@mixin color-scaling($property, $prefix, $k, $v) {
|
|
4
4
|
.#{$prefix}-#{$k} {
|
|
5
5
|
#{$property}: $v;
|
|
6
6
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
@mixin shade-scaling($property, $prefix, $k, $v, $percentage) {
|
|
16
16
|
@for $i from 1 through 13 {
|
|
17
|
-
@if $i <=
|
|
17
|
+
@if $i <=6 {
|
|
18
18
|
.#{$prefix}-#{$k}-#{$i} {
|
|
19
19
|
#{$property}: color.mix(white, $v, (7 - $i) * $percentage);
|
|
20
20
|
}
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
#{$property}: color.mix(white, $v, (7 - $i) * $percentage);
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@else if $i >7 {
|
|
28
30
|
.#{$prefix}-#{$k}-#{$i - 1} {
|
|
29
31
|
#{$property}: color.mix(black, $v, ($i - 7) * $percentage);
|
|
30
32
|
}
|
|
@@ -36,4 +38,4 @@
|
|
|
36
38
|
}
|
|
37
39
|
}
|
|
38
40
|
}
|
|
39
|
-
}
|
|
41
|
+
}
|
|
@@ -5,68 +5,55 @@
|
|
|
5
5
|
@use "../abstracts/_theme" as theme;
|
|
6
6
|
|
|
7
7
|
$yma-color-utils: (
|
|
8
|
-
"accent-color": (
|
|
9
|
-
"prefix": "ac",
|
|
8
|
+
"accent-color": ("prefix": "ac",
|
|
10
9
|
"property": "accent-color",
|
|
11
10
|
),
|
|
12
11
|
|
|
13
|
-
"background-color": (
|
|
14
|
-
"prefix": "bg",
|
|
12
|
+
"background-color": ("prefix": "bg",
|
|
15
13
|
"property": "background-color",
|
|
16
14
|
),
|
|
17
15
|
|
|
18
|
-
"border-color": (
|
|
19
|
-
"prefix": "bc",
|
|
16
|
+
"border-color": ("prefix": "bc",
|
|
20
17
|
"property": "border-color",
|
|
21
18
|
),
|
|
22
19
|
|
|
23
|
-
"border-bottom-color": (
|
|
24
|
-
"prefix": "bc-b",
|
|
20
|
+
"border-bottom-color": ("prefix": "bc-b",
|
|
25
21
|
"property": "border-bottom-color",
|
|
26
22
|
),
|
|
27
23
|
|
|
28
|
-
"border-left-color": (
|
|
29
|
-
"prefix": "bc-l",
|
|
24
|
+
"border-left-color": ("prefix": "bc-l",
|
|
30
25
|
"property": "border-left-color",
|
|
31
26
|
),
|
|
32
27
|
|
|
33
|
-
"border-right-color": (
|
|
34
|
-
"prefix": "bc-r",
|
|
28
|
+
"border-right-color": ("prefix": "bc-r",
|
|
35
29
|
"property": "border-right-color",
|
|
36
30
|
),
|
|
37
31
|
|
|
38
|
-
"border-top-color": (
|
|
39
|
-
"prefix": "bc-t",
|
|
32
|
+
"border-top-color": ("prefix": "bc-t",
|
|
40
33
|
"property": "border-top-color",
|
|
41
34
|
),
|
|
42
35
|
|
|
43
|
-
"caret-color": (
|
|
44
|
-
"prefix": "cc",
|
|
36
|
+
"caret-color": ("prefix": "cc",
|
|
45
37
|
"property": "caret-color",
|
|
46
38
|
),
|
|
47
39
|
|
|
48
|
-
"color": (
|
|
49
|
-
"prefix": "tc",
|
|
40
|
+
"color": ("prefix": "tc",
|
|
50
41
|
"property": "color",
|
|
51
42
|
),
|
|
52
43
|
|
|
53
|
-
"fill": (
|
|
54
|
-
"prefix": "f",
|
|
44
|
+
"fill": ("prefix": "f",
|
|
55
45
|
"property": "fill",
|
|
56
46
|
),
|
|
57
47
|
|
|
58
|
-
"outline-color": (
|
|
59
|
-
"prefix": "oc",
|
|
48
|
+
"outline-color": ("prefix": "oc",
|
|
60
49
|
"property": "outline-color",
|
|
61
50
|
),
|
|
62
51
|
|
|
63
|
-
"stroke": (
|
|
64
|
-
"prefix": "s",
|
|
52
|
+
"stroke": ("prefix": "s",
|
|
65
53
|
"property": "stroke",
|
|
66
54
|
),
|
|
67
55
|
|
|
68
|
-
"text-decoration-color": (
|
|
69
|
-
"prefix": "tdc",
|
|
56
|
+
"text-decoration-color": ("prefix": "tdc",
|
|
70
57
|
"property": "text-decoration-color",
|
|
71
58
|
),
|
|
72
59
|
);
|
|
@@ -76,10 +63,10 @@ $yma-color-utils: (
|
|
|
76
63
|
$prefix: map.get($map, "prefix");
|
|
77
64
|
|
|
78
65
|
@each $k, $v in theme.$yma-theme {
|
|
79
|
-
@include mix.
|
|
66
|
+
@include mix.color-scaling($property, $prefix, $k, $v);
|
|
80
67
|
|
|
81
68
|
@if (fun.ignore-neutral($v, theme.$yma-theme)) {
|
|
82
69
|
@include mix.shade-scaling($property, $prefix, $k, $v, 14%);
|
|
83
70
|
}
|
|
84
71
|
}
|
|
85
|
-
}
|
|
72
|
+
}
|
|
@@ -5,13 +5,10 @@
|
|
|
5
5
|
@use "../utilities/maps/" as maps;
|
|
6
6
|
|
|
7
7
|
$yma-flexbox-utils: (
|
|
8
|
-
"align-content": (
|
|
9
|
-
"
|
|
10
|
-
"properties": (
|
|
11
|
-
"align-content",
|
|
8
|
+
"align-content": ("prefix": "ac",
|
|
9
|
+
"properties": ("align-content",
|
|
12
10
|
),
|
|
13
|
-
"values": (
|
|
14
|
-
"b": baseline,
|
|
11
|
+
"values": ("b": baseline,
|
|
15
12
|
"c": center,
|
|
16
13
|
"fe": flex-end,
|
|
17
14
|
"fs": flex-start,
|
|
@@ -23,13 +20,10 @@ $yma-flexbox-utils: (
|
|
|
23
20
|
),
|
|
24
21
|
),
|
|
25
22
|
|
|
26
|
-
"align-items": (
|
|
27
|
-
"
|
|
28
|
-
"properties": (
|
|
29
|
-
"align-items",
|
|
23
|
+
"align-items": ("prefix": "ai",
|
|
24
|
+
"properties": ("align-items",
|
|
30
25
|
),
|
|
31
|
-
"values": (
|
|
32
|
-
"b": baseline,
|
|
26
|
+
"values": ("b": baseline,
|
|
33
27
|
"c": center,
|
|
34
28
|
"fe": flex-end,
|
|
35
29
|
"fs": flex-start,
|
|
@@ -37,13 +31,10 @@ $yma-flexbox-utils: (
|
|
|
37
31
|
),
|
|
38
32
|
),
|
|
39
33
|
|
|
40
|
-
"align-self": (
|
|
41
|
-
"
|
|
42
|
-
"properties": (
|
|
43
|
-
"align-self",
|
|
34
|
+
"align-self": ("prefix": "as",
|
|
35
|
+
"properties": ("align-self",
|
|
44
36
|
),
|
|
45
|
-
"values": (
|
|
46
|
-
"auto": auto,
|
|
37
|
+
"values": ("auto": auto,
|
|
47
38
|
"b": baseline,
|
|
48
39
|
"c": center,
|
|
49
40
|
"fe": flex-end,
|
|
@@ -52,34 +43,26 @@ $yma-flexbox-utils: (
|
|
|
52
43
|
),
|
|
53
44
|
),
|
|
54
45
|
|
|
55
|
-
"flex-basis": (
|
|
56
|
-
"
|
|
57
|
-
"properties": (
|
|
58
|
-
"flex-basis",
|
|
46
|
+
"flex-basis": ("prefix": "fb",
|
|
47
|
+
"properties": ("flex-basis",
|
|
59
48
|
),
|
|
60
49
|
"values": maps.$yma-flex-basis-map,
|
|
61
50
|
),
|
|
62
51
|
|
|
63
|
-
"flex-direction": (
|
|
64
|
-
"
|
|
65
|
-
"properties": (
|
|
66
|
-
"flex-direction",
|
|
52
|
+
"flex-direction": ("prefix": "fd",
|
|
53
|
+
"properties": ("flex-direction",
|
|
67
54
|
),
|
|
68
|
-
"values": (
|
|
69
|
-
"c": column,
|
|
55
|
+
"values": ("c": column,
|
|
70
56
|
"cr": column-reverse,
|
|
71
57
|
"r": row,
|
|
72
58
|
"rr": row-reverse,
|
|
73
59
|
),
|
|
74
60
|
),
|
|
75
61
|
|
|
76
|
-
"flex-grow": (
|
|
77
|
-
"
|
|
78
|
-
"properties": (
|
|
79
|
-
"flex-grow",
|
|
62
|
+
"flex-grow": ("prefix": "fg",
|
|
63
|
+
"properties": ("flex-grow",
|
|
80
64
|
),
|
|
81
|
-
"values": (
|
|
82
|
-
"0": 0,
|
|
65
|
+
"values": ("0": 0,
|
|
83
66
|
"1": 1,
|
|
84
67
|
"2": 2,
|
|
85
68
|
"3": 3,
|
|
@@ -91,13 +74,10 @@ $yma-flexbox-utils: (
|
|
|
91
74
|
),
|
|
92
75
|
),
|
|
93
76
|
|
|
94
|
-
"flex-shrink": (
|
|
95
|
-
"
|
|
96
|
-
"properties": (
|
|
97
|
-
"flex-shrink",
|
|
77
|
+
"flex-shrink": ("prefix": "fs",
|
|
78
|
+
"properties": ("flex-shrink",
|
|
98
79
|
),
|
|
99
|
-
"values": (
|
|
100
|
-
"0": 0,
|
|
80
|
+
"values": ("0": 0,
|
|
101
81
|
"1": 1,
|
|
102
82
|
"2": 2,
|
|
103
83
|
"3": 3,
|
|
@@ -109,25 +89,19 @@ $yma-flexbox-utils: (
|
|
|
109
89
|
),
|
|
110
90
|
),
|
|
111
91
|
|
|
112
|
-
"flex-wrap": (
|
|
113
|
-
"
|
|
114
|
-
"properties": (
|
|
115
|
-
"flex-wrap",
|
|
92
|
+
"flex-wrap": ("prefix": "fw",
|
|
93
|
+
"properties": ("flex-wrap",
|
|
116
94
|
),
|
|
117
|
-
"values": (
|
|
118
|
-
"nw": nowrap,
|
|
95
|
+
"values": ("nw": nowrap,
|
|
119
96
|
"w": wrap,
|
|
120
97
|
"wr": wrap-reverse,
|
|
121
98
|
),
|
|
122
99
|
),
|
|
123
100
|
|
|
124
|
-
"flex": (
|
|
125
|
-
"
|
|
126
|
-
"properties": (
|
|
127
|
-
"flex",
|
|
101
|
+
"flex": ("prefix": "f",
|
|
102
|
+
"properties": ("flex",
|
|
128
103
|
),
|
|
129
|
-
"values": (
|
|
130
|
-
"1": 1 1 0%,
|
|
104
|
+
"values": ("1": 1 1 0%,
|
|
131
105
|
"2": 2 2 0%,
|
|
132
106
|
"3": 3 3 0%,
|
|
133
107
|
"4": 4 4 0%,
|
|
@@ -138,13 +112,10 @@ $yma-flexbox-utils: (
|
|
|
138
112
|
),
|
|
139
113
|
),
|
|
140
114
|
|
|
141
|
-
"justify-content": (
|
|
142
|
-
"
|
|
143
|
-
"properties": (
|
|
144
|
-
"justify-content",
|
|
115
|
+
"justify-content": ("prefix": "jc",
|
|
116
|
+
"properties": ("justify-content",
|
|
145
117
|
),
|
|
146
|
-
"values": (
|
|
147
|
-
"c": center,
|
|
118
|
+
"values": ("c": center,
|
|
148
119
|
"fe": flex-end,
|
|
149
120
|
"fs": flex-start,
|
|
150
121
|
"n": normal,
|
|
@@ -155,26 +126,20 @@ $yma-flexbox-utils: (
|
|
|
155
126
|
),
|
|
156
127
|
),
|
|
157
128
|
|
|
158
|
-
"justify-items": (
|
|
159
|
-
"
|
|
160
|
-
"properties": (
|
|
161
|
-
"justify-items",
|
|
129
|
+
"justify-items": ("prefix": "ji",
|
|
130
|
+
"properties": ("justify-items",
|
|
162
131
|
),
|
|
163
|
-
"values": (
|
|
164
|
-
"c": center,
|
|
132
|
+
"values": ("c": center,
|
|
165
133
|
"e": end,
|
|
166
134
|
"s": start,
|
|
167
135
|
"st": stretch,
|
|
168
136
|
),
|
|
169
137
|
),
|
|
170
138
|
|
|
171
|
-
"justify-self": (
|
|
172
|
-
"
|
|
173
|
-
"properties": (
|
|
174
|
-
"justify-self",
|
|
139
|
+
"justify-self": ("prefix": "js",
|
|
140
|
+
"properties": ("justify-self",
|
|
175
141
|
),
|
|
176
|
-
"values": (
|
|
177
|
-
"auto": auto,
|
|
142
|
+
"values": ("auto": auto,
|
|
178
143
|
"c": center,
|
|
179
144
|
"e": end,
|
|
180
145
|
"s": start,
|
|
@@ -182,13 +147,10 @@ $yma-flexbox-utils: (
|
|
|
182
147
|
),
|
|
183
148
|
),
|
|
184
149
|
|
|
185
|
-
"order": (
|
|
186
|
-
"
|
|
187
|
-
"properties": (
|
|
188
|
-
"order",
|
|
150
|
+
"order": ("prefix": "or",
|
|
151
|
+
"properties": ("order",
|
|
189
152
|
),
|
|
190
|
-
"values": (
|
|
191
|
-
"l": -9999,
|
|
153
|
+
"values": ("l": -9999,
|
|
192
154
|
"0": 0,
|
|
193
155
|
"1": 1,
|
|
194
156
|
"2": 2,
|
|
@@ -203,51 +165,6 @@ $yma-flexbox-utils: (
|
|
|
203
165
|
"f": 9999,
|
|
204
166
|
),
|
|
205
167
|
),
|
|
206
|
-
|
|
207
|
-
"place-content": (
|
|
208
|
-
"prefix": "pc",
|
|
209
|
-
"properties": (
|
|
210
|
-
"place-content",
|
|
211
|
-
),
|
|
212
|
-
"values": (
|
|
213
|
-
"b": baseline,
|
|
214
|
-
"c": center,
|
|
215
|
-
"e": end,
|
|
216
|
-
"s": start,
|
|
217
|
-
"sa": space-around,
|
|
218
|
-
"sb": space-between,
|
|
219
|
-
"se": space-evenly,
|
|
220
|
-
"st": stretch,
|
|
221
|
-
),
|
|
222
|
-
),
|
|
223
|
-
|
|
224
|
-
"place-items": (
|
|
225
|
-
"prefix": "pi",
|
|
226
|
-
"properties": (
|
|
227
|
-
"place-items",
|
|
228
|
-
),
|
|
229
|
-
"values": (
|
|
230
|
-
"b": baseline,
|
|
231
|
-
"c": center,
|
|
232
|
-
"e": end,
|
|
233
|
-
"s": start,
|
|
234
|
-
"st": stretch,
|
|
235
|
-
),
|
|
236
|
-
),
|
|
237
|
-
|
|
238
|
-
"place-self": (
|
|
239
|
-
"prefix": "ps",
|
|
240
|
-
"properties": (
|
|
241
|
-
"place-self",
|
|
242
|
-
),
|
|
243
|
-
"values": (
|
|
244
|
-
"auto": auto,
|
|
245
|
-
"c": center,
|
|
246
|
-
"e": end,
|
|
247
|
-
"s": start,
|
|
248
|
-
"st": stretch,
|
|
249
|
-
),
|
|
250
|
-
),
|
|
251
168
|
);
|
|
252
169
|
|
|
253
170
|
@each $name, $map in $yma-flexbox-utils {
|
|
@@ -255,4 +172,4 @@ $yma-flexbox-utils: (
|
|
|
255
172
|
$properties: map.get($map, "properties");
|
|
256
173
|
|
|
257
174
|
@include mix.create-utilities($map, $prefix, $properties);
|
|
258
|
-
}
|
|
175
|
+
}
|
package/src/utilities/_grid.scss
CHANGED
|
@@ -260,6 +260,51 @@ $yma-grid-utils: (
|
|
|
260
260
|
),
|
|
261
261
|
),
|
|
262
262
|
|
|
263
|
+
"place-content": (
|
|
264
|
+
"prefix": "pc",
|
|
265
|
+
"properties": (
|
|
266
|
+
"place-content",
|
|
267
|
+
),
|
|
268
|
+
"values": (
|
|
269
|
+
"b": baseline,
|
|
270
|
+
"c": center,
|
|
271
|
+
"e": end,
|
|
272
|
+
"s": start,
|
|
273
|
+
"sa": space-around,
|
|
274
|
+
"sb": space-between,
|
|
275
|
+
"se": space-evenly,
|
|
276
|
+
"st": stretch,
|
|
277
|
+
),
|
|
278
|
+
),
|
|
279
|
+
|
|
280
|
+
"place-items": (
|
|
281
|
+
"prefix": "pi",
|
|
282
|
+
"properties": (
|
|
283
|
+
"place-items",
|
|
284
|
+
),
|
|
285
|
+
"values": (
|
|
286
|
+
"b": baseline,
|
|
287
|
+
"c": center,
|
|
288
|
+
"e": end,
|
|
289
|
+
"s": start,
|
|
290
|
+
"st": stretch,
|
|
291
|
+
),
|
|
292
|
+
),
|
|
293
|
+
|
|
294
|
+
"place-self": (
|
|
295
|
+
"prefix": "ps",
|
|
296
|
+
"properties": (
|
|
297
|
+
"place-self",
|
|
298
|
+
),
|
|
299
|
+
"values": (
|
|
300
|
+
"auto": auto,
|
|
301
|
+
"c": center,
|
|
302
|
+
"e": end,
|
|
303
|
+
"s": start,
|
|
304
|
+
"st": stretch,
|
|
305
|
+
),
|
|
306
|
+
),
|
|
307
|
+
|
|
263
308
|
"row-gap": (
|
|
264
309
|
"prefix": "rg",
|
|
265
310
|
"properties": (
|
package/dist/cli/lang.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
export const messages = {
|
|
2
|
-
build: {
|
|
3
|
-
start: "Building...",
|
|
4
|
-
compiling: "Compiling...",
|
|
5
|
-
usingCache: "Using cache...",
|
|
6
|
-
purging: "Purging...",
|
|
7
|
-
minifying: "Minifying...",
|
|
8
|
-
success: (ms, output) => `Build done in ${ms}ms. (${output})`,
|
|
9
|
-
fail: "Build failed.",
|
|
10
|
-
},
|
|
11
|
-
init: {
|
|
12
|
-
start: "Creating config...",
|
|
13
|
-
success: "Config created.",
|
|
14
|
-
fail: "Config failed.",
|
|
15
|
-
},
|
|
16
|
-
watch: {
|
|
17
|
-
start: "Watching for changes...",
|
|
18
|
-
fail: "Watch failed.",
|
|
19
|
-
},
|
|
20
|
-
common: {
|
|
21
|
-
unknownError: "Unknown error.",
|
|
22
|
-
},
|
|
23
|
-
};
|
package/dist/cli/utils/cli-ui.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import ora from "ora";
|
|
2
|
-
export const spinner = ora({
|
|
3
|
-
spinner: "sand",
|
|
4
|
-
});
|
|
5
|
-
export const cli = {
|
|
6
|
-
success: (msg) => console.log(`✔ ${msg}`),
|
|
7
|
-
info: (msg) => console.log(`ℹ ${msg}`),
|
|
8
|
-
error: (msg) => console.log(`✗ ${msg}`),
|
|
9
|
-
startSpinner: (text) => {
|
|
10
|
-
const spinner = ora({ spinner: "sand", color: "white" }).start(text);
|
|
11
|
-
return spinner;
|
|
12
|
-
},
|
|
13
|
-
};
|
package/dist/cli/utils/ui.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import ora from "ora";
|
|
2
|
-
import chalk from "chalk";
|
|
3
|
-
export const spinner = ora();
|
|
4
|
-
const { green, yellow, cyan, red } = chalk;
|
|
5
|
-
export const ui = {
|
|
6
|
-
success: (msg) => console.log(green(`✓ ${msg}`)),
|
|
7
|
-
warn: (msg) => console.log(yellow(`⚠ ${msg}`)),
|
|
8
|
-
info: (msg) => console.log(cyan(`ℹ ${msg}`)),
|
|
9
|
-
error: (msg) => console.log(red(`✗ ${msg}`)),
|
|
10
|
-
startSpinner: (text) => {
|
|
11
|
-
spinner.text = text;
|
|
12
|
-
spinner.start();
|
|
13
|
-
return spinner;
|
|
14
|
-
},
|
|
15
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
@mixin extensions($map, $prefixes) {
|
|
2
|
-
@each $k, $v in $map {
|
|
3
|
-
@each $prefix, $property in $prefixes {
|
|
4
|
-
// base styles
|
|
5
|
-
.#{$prefix}-#{$k} {
|
|
6
|
-
#{$property}: $v;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
// hover styles
|
|
10
|
-
.h\:#{$prefix}-#{$k}:hover {
|
|
11
|
-
#{$property}: $v;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
@each $bp, $bp-value in $yma-breakpoints {
|
|
15
|
-
// responsive styles
|
|
16
|
-
.#{$bp}\:#{$prefix}-#{$k} {
|
|
17
|
-
@include breakpoint($bp-value) {
|
|
18
|
-
#{$property}: $v;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|