Skip to content

Commit

Permalink
fix(product page): Add overflow hidden to prevent weird overflow
Browse files Browse the repository at this point in the history
This fixes a weird iOS Safari bug where the select would take up extra space if a long text option is selected
  • Loading branch information
dhmacs committed Jan 9, 2024
1 parent 2bc4c24 commit a2c1014
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export function ProductOptions({
{selectorType === SelectorType.SELECT && (
<Select
bg="white"
overflowX="hidden"
value={selected}
onChange={(event) => {
onChange(event.target.value);
Expand Down

0 comments on commit a2c1014

Please sign in to comment.