@ctlyst.id/internal-ui 3.1.18 → 3.1.19

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/dist/index.js CHANGED
@@ -4047,16 +4047,13 @@ function selectStyles(colorMode, _isError) {
4047
4047
  singleValue: (base) => {
4048
4048
  return { ...base, ...selectStyle };
4049
4049
  },
4050
- input: (base) => {
4051
- return {
4052
- ...base,
4053
- ...selectStyle,
4054
- paddingTop: 8,
4055
- paddingBottom: 8,
4056
- marginTop: 0,
4057
- marginBottom: 0
4058
- };
4059
- },
4050
+ input: (base) => ({
4051
+ ...base,
4052
+ ...selectStyle,
4053
+ paddingTop: 8,
4054
+ paddingBottom: 8,
4055
+ margin: 0
4056
+ }),
4060
4057
  dropdownIndicator: (base) => {
4061
4058
  return { ...base, ...selectStyle, color: "var(--chakra-colors-neutral-400)" };
4062
4059
  },