1mpacto-sass 0.0.6 → 0.0.7
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/_config.scss +6 -2
- package/package.json +1 -1
- package/readme.md +5 -0
package/_config.scss
CHANGED
|
@@ -96,8 +96,7 @@ $height-map: map.merge($spacing-map, ('screen': 100vh,
|
|
|
96
96
|
'fit': (-moz-fit-content, fit-content),
|
|
97
97
|
));
|
|
98
98
|
|
|
99
|
-
$size-map: map.merge($spacing-map, (
|
|
100
|
-
'min': min-content,
|
|
99
|
+
$size-map: map.merge($spacing-map, ('min': min-content,
|
|
101
100
|
'max': max-content,
|
|
102
101
|
'fit': (-moz-fit-content, fit-content),
|
|
103
102
|
));
|
|
@@ -233,6 +232,11 @@ $static-utilities-map: ( // POSITION
|
|
|
233
232
|
'inline-flex': (property: display, value: inline-flex),
|
|
234
233
|
'grid': (property: display, value: grid),
|
|
235
234
|
'hidden': (property: display, value: none),
|
|
235
|
+
'table': (property: display, value: table),
|
|
236
|
+
'table-row': (property: display, value: table-row),
|
|
237
|
+
'table-cell': (property: display, value: table-cell),
|
|
238
|
+
'contents': (property: display, value: contents),
|
|
239
|
+
'inline-grid': (property: display, value: inline-grid),
|
|
236
240
|
|
|
237
241
|
// FLEX
|
|
238
242
|
'flex-row': (property: flex-direction, value: row),
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -132,6 +132,11 @@ Generator ini dibuat sebagai pengganti Tailwind CSS untuk proyek yang membutuhka
|
|
|
132
132
|
| inline-flex | display | inline-flex | x | static |
|
|
133
133
|
| grid | display | grid | x | static |
|
|
134
134
|
| hidden | display | hidden | x | static |
|
|
135
|
+
| table | display | table | x | static |
|
|
136
|
+
| table-row | display | table-row | x | static |
|
|
137
|
+
| table-cell | display | table-cell | x | static |
|
|
138
|
+
| contents | display | contents | x | static |
|
|
139
|
+
| inline-grid | display | inline-grid | x | static |
|
|
135
140
|
| flex-row | flex-direction | flex-row | x | static |
|
|
136
141
|
| flex-col | flex-direction | flex-col | x | static |
|
|
137
142
|
| flex-row-reverse | flex-direction | flex-row-reverse | x | static |
|