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 77b4b62 commit cb52f58Copy full SHA for cb52f58
packages/@react-spectrum/s2/src/ComboBox.tsx
@@ -153,7 +153,9 @@ export let listbox = style<{size: 'S' | 'M' | 'L' | 'XL'}>({
153
width: 'full',
154
boxSizing: 'border-box',
155
maxHeight: '[inherit]',
156
- overflow: 'auto',
+ // TODO: Might help with horizontal scrolling happening on Windows, will need to check somehow. Otherwise, revert back to overflow: auto
157
+ overflowY: 'auto',
158
+ overflowX: 'hidden',
159
fontFamily: 'sans',
160
fontSize: 'control'
161
});
0 commit comments