We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d545e commit 7b9383eCopy full SHA for 7b9383e
packages/components/src/components/Select/index.tsx
@@ -247,9 +247,9 @@ export function SelectContainer({
247
el.style.bottom = `${window.innerHeight - comboboxY + 10}px`
248
else el.style.top = `${comboboxY + height + 10 + y}px`
249
250
- if (isOverflowRight) {
+ if (isOverflowRight)
251
el.style.left = `${Math.max(comboboxX - el.offsetWidth + combobox.offsetWidth, 0) + x}px`
252
- } else el.style.left = `${comboboxX + x}px`
+ else el.style.left = `${comboboxX + x}px`
253
}
254
255
// 최초 위치 설정
0 commit comments