@hanzo/ui 3.8.9 → 3.8.10
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
|
@@ -862,7 +862,7 @@ export default {
|
|
|
862
862
|
'3/4': '75%',
|
|
863
863
|
full: '100%',
|
|
864
864
|
},
|
|
865
|
-
width: {
|
|
865
|
+
width: ({ theme, breakpoints }) => ({
|
|
866
866
|
auto: 'auto',
|
|
867
867
|
...spacing,
|
|
868
868
|
'1/2': '50%',
|
|
@@ -896,7 +896,8 @@ export default {
|
|
|
896
896
|
min: 'min-content',
|
|
897
897
|
max: 'max-content',
|
|
898
898
|
fit: 'fit-content',
|
|
899
|
-
|
|
899
|
+
...breakpoints(theme('screens')),
|
|
900
|
+
}),
|
|
900
901
|
willChange: {
|
|
901
902
|
auto: 'auto',
|
|
902
903
|
scroll: 'scroll-position',
|