Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: scrollable search filter #103

Merged
merged 4 commits into from
Aug 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions src/components/search/SearchFilterBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,11 @@ function ChainMultiSelector({
</TextButton>
</div>
</div>
<div className="mt-2.5 flex space-x-6">
<div className="flex flex-col">
<div className="mt-2.5 flex space-x-2">
<div
className="flex flex-col overflow-y-auto max-h-100"
style={{ overflowX: 'hidden' }}
paulbalaji marked this conversation as resolved.
Show resolved Hide resolved
>
<div className="pb-1.5">
<CheckBox
checked={!hasAnyUncheckedChain(mainnets)}
Expand All @@ -216,8 +219,10 @@ function ChainMultiSelector({
</CheckBox>
))}
</div>
<div className="self-stretch w-px my-1 bg-gray-100"></div>
<div className="flex flex-col">
<div
className="flex flex-col overflow-y-auto max-h-100"
style={{ overflowX: 'hidden' }}
paulbalaji marked this conversation as resolved.
Show resolved Hide resolved
>
<div className="pb-1.5">
<CheckBox
checked={!hasAnyUncheckedChain(testnets)}
Expand Down
Loading