Skip to content

Commit ce14fc8

Browse files
committed
fix: remove gap unuset for compact and border less
1 parent 0b77779 commit ce14fc8

File tree

1 file changed

+1
-3
lines changed
  • src/Shared/Components/SelectPicker

1 file changed

+1
-3
lines changed

src/Shared/Components/SelectPicker/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ const getVariantOverrides = <OptionValue>(
6060
backgroundColor: 'transparent',
6161
border: 'none',
6262
padding: 0,
63-
gap: '2px',
6463
}),
6564
singleValue: () => ({
6665
fontWeight: 600,
@@ -73,7 +72,6 @@ const getVariantOverrides = <OptionValue>(
7372
'&:not(:hover)': {
7473
backgroundColor: 'transparent',
7574
borderColor: 'transparent',
76-
gap: '2px',
7775
},
7876
}),
7977
...(state.menuIsOpen && {
@@ -166,7 +164,7 @@ export const getCommonSelectStyle = <OptionValue, IsMulti extends boolean>({
166164
maxHeight: '120px',
167165
overflow: 'auto',
168166
alignItems: 'safe center',
169-
transition: 'border-color 0.17s, border 0.17s, gap 0.17s',
167+
transition: 'border-color 0.17s, border 0.17s',
170168
...(control(base, state) || {}),
171169

172170
'&:hover': {

0 commit comments

Comments
 (0)