Skip to content

Commit a2d75ae

Browse files
authored
Merge pull request #14982 from ethereum/country-picker-zindex
fix: Adjust z-index for CentralizedExchanges Select component
2 parents d9ce67f + 0b62c25 commit a2d75ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/CentralizedExchanges/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const CentralizedExchanges = ({
8484
<p className="mb-8 max-w-screen-md text-center">
8585
{t("page-get-eth-exchanges-intro")}
8686
</p>
87-
<div className="w-full max-w-screen-sm">
87+
<div className="relative z-50 w-full max-w-screen-sm">
8888
<Select
8989
instanceId="eth-exchange-region"
9090
aria-label={t("page-get-eth-exchanges-header")}
@@ -93,6 +93,7 @@ const CentralizedExchanges = ({
9393
placeholder={placeholderString}
9494
isSearchable
9595
variant="outline"
96+
className="z-50"
9697
/>
9798
</div>
9899
{!hasSelectedCountry && (

0 commit comments

Comments
 (0)