mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-12 11:28:00 +00:00
feat(management-tabs): responsive search and filters
This commit is contained in:
parent
ae841b2dc6
commit
6255be0751
@ -1,5 +1,4 @@
|
||||
import { Tabs } from '@status-im/components'
|
||||
import { XStack } from 'tamagui'
|
||||
import { useEffect, useMemo, useState } from 'react'
|
||||
import { useDispatch, useSelector } from 'react-redux'
|
||||
|
||||
@ -107,13 +106,23 @@ const ManagementTabs = () => {
|
||||
))}
|
||||
</Tabs.List>
|
||||
</div>
|
||||
<XStack space={'$3'} alignItems="center">
|
||||
<div
|
||||
className="transparent-scrollbar"
|
||||
style={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'start',
|
||||
gap: '8px',
|
||||
overflowX: 'auto',
|
||||
width: '100%',
|
||||
}}
|
||||
>
|
||||
<SearchManagement
|
||||
searchValue={searchValue}
|
||||
changeSearchValue={changeSearchValue}
|
||||
/>
|
||||
<DropdownFilter />
|
||||
</XStack>
|
||||
</div>
|
||||
</div>
|
||||
{VALIDATOR_TABS_MANAGEMENT.map(tab => (
|
||||
<Tabs.Content key={tab} value={tab} style={{ marginTop: '8px' }}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user