@mackin.com/styleguide 10.0.3 → 10.0.4
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/index.esm.js +2 -1
- package/index.js +2 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -3153,7 +3153,8 @@ const Picker = (props) => {
|
|
|
3153
3153
|
right: `calc(${theme.controls.padding} + ${round ? roundPxPadding : '0px'})`,
|
|
3154
3154
|
height: '100%',
|
|
3155
3155
|
pointerEvents: 'none',
|
|
3156
|
-
color: theme.colors.font
|
|
3156
|
+
color: theme.colors.font,
|
|
3157
|
+
width: 14
|
|
3157
3158
|
}), iconClassName) }))),
|
|
3158
3159
|
(error || controlAlign) && React.createElement(InputErrorDisplay, { error: error })));
|
|
3159
3160
|
};
|
package/index.js
CHANGED
|
@@ -3171,7 +3171,8 @@ const Picker = (props) => {
|
|
|
3171
3171
|
right: `calc(${theme.controls.padding} + ${round ? roundPxPadding : '0px'})`,
|
|
3172
3172
|
height: '100%',
|
|
3173
3173
|
pointerEvents: 'none',
|
|
3174
|
-
color: theme.colors.font
|
|
3174
|
+
color: theme.colors.font,
|
|
3175
|
+
width: 14
|
|
3175
3176
|
}), iconClassName) }))),
|
|
3176
3177
|
(error || controlAlign) && React__namespace.createElement(InputErrorDisplay, { error: error })));
|
|
3177
3178
|
};
|