@onereach/styles 2.34.1-beta.2272.0 → 2.34.1-beta.2321.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
|
@@ -241,17 +241,23 @@ module.exports = {
|
|
|
241
241
|
return {
|
|
242
242
|
display: prefix + 'flex',
|
|
243
243
|
flexDirection: direction,
|
|
244
|
+
flex: prefix === 'inline-' ? '0 0 auto' : undefined,
|
|
244
245
|
alignItems: direction === 'row' ? 'center' : undefined,
|
|
245
|
-
maxWidth: prefix === 'inline-' ? 'min-content' : undefined,
|
|
246
246
|
};
|
|
247
247
|
},
|
|
248
248
|
}, {
|
|
249
249
|
values: {
|
|
250
250
|
'row': 'row',
|
|
251
|
+
'row-reverse': 'row-reverse',
|
|
252
|
+
|
|
251
253
|
'column': 'column',
|
|
254
|
+
'column-reverse': 'column-reverse',
|
|
252
255
|
|
|
253
256
|
'inline-row': 'inline-..row',
|
|
257
|
+
'inline-row-reverse': 'inline-..row-reverse',
|
|
258
|
+
|
|
254
259
|
'inline-column': 'inline-..column',
|
|
260
|
+
'inline-column-reverse': 'inline-..column-reverse',
|
|
255
261
|
},
|
|
256
262
|
});
|
|
257
263
|
}),
|