@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.mjs CHANGED
@@ -3861,16 +3861,13 @@ function selectStyles(colorMode, _isError) {
3861
3861
  singleValue: (base) => {
3862
3862
  return { ...base, ...selectStyle };
3863
3863
  },
3864
- input: (base) => {
3865
- return {
3866
- ...base,
3867
- ...selectStyle,
3868
- paddingTop: 8,
3869
- paddingBottom: 8,
3870
- marginTop: 0,
3871
- marginBottom: 0
3872
- };
3873
- },
3864
+ input: (base) => ({
3865
+ ...base,
3866
+ ...selectStyle,
3867
+ paddingTop: 8,
3868
+ paddingBottom: 8,
3869
+ margin: 0
3870
+ }),
3874
3871
  dropdownIndicator: (base) => {
3875
3872
  return { ...base, ...selectStyle, color: "var(--chakra-colors-neutral-400)" };
3876
3873
  },