@agilekit/ui 0.0.399-alpha.0 → 0.0.400-alpha.0
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agilekit/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.400-alpha.0",
|
|
4
4
|
"description": "Agile's product component library",
|
|
5
5
|
"author": "Michael de Lima Alves <michaelalves@outlook.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
"react-spring": "*"
|
|
144
144
|
},
|
|
145
145
|
"bugs": {},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "6b3164988cc968acddd6c89bb13aa6313f7194b4"
|
|
147
147
|
}
|
|
@@ -38,11 +38,12 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
@mixin make-col($size, $columns: $grid-columns) {
|
|
41
|
-
|
|
41
|
+
$num: $size / $columns;
|
|
42
|
+
flex: 0 0 percentage($num);
|
|
42
43
|
// Add a `max-width` to ensure content within each column does not blow out
|
|
43
44
|
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
|
|
44
45
|
// do not appear to require this.
|
|
45
|
-
max-width: percentage(
|
|
46
|
+
max-width: percentage($num);
|
|
46
47
|
}
|
|
47
48
|
|
|
48
49
|
@mixin make-col-offset($size, $columns: $grid-columns) {
|