fix z index

This commit is contained in:
saml33 2024-04-09 15:55:43 +10:00
parent 131f0f584f
commit c6fb979e4b
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ const TokensFilter = ({ tokens }: { tokens: TokenPageWithData[] }) => {
/>
<MagnifyingGlassIcon className="absolute left-2 top-3 h-4 w-4 text-th-fgd-3" />
{filteredTokens.length && searchString.length > 1 ? (
<div className="absolute z-20 top-12 bg-th-bkg-2 rounded-lg p-4 space-y-3 w-full">
<div className="absolute z-30 top-12 bg-th-bkg-2 rounded-lg p-4 space-y-3 w-full">
{filteredTokens.map((token) => (
<Link
className="flex items-center justify-between text-th-fgd-2 md:hover:text-th-active"

File diff suppressed because one or more lines are too long