After doing some testing for various customizable select demos on mobile, @smfr found that the options were not reachable on mobile on long selects (take the color select from https://codepen.io/argyleink/pen/wvYrZEV for instance), which is an usability regression from the native select.
I suggest adding this to the UA sheet:
::picker(select) {
max-height: 100vh;
}
(not sure if it should be dvh/svh or vh)
This seems to make the picker limit its height to the viewport to which point you can scroll within the picker.
cc @lukewarlow @josepharhar @fantasai