I am combining react-select with Grommet and have the select inside a Grommet FormField component like this:
<FormField label="Country">
<Select options={options}/>
</FormField>
On smaller screens, it works fine:
But on larger screens the select content is scroll-able inside the parent (FormField) container:
If I toggle position: absolute
to off, then the select content displays outside the container, but resizes the whole form:
Any ideas on what else to check or try?