Commit 2dca1e17 authored by isstuev's avatar isstuev Committed by tom goriunov

fix pools 2

parent feef1e7b
...@@ -18,7 +18,7 @@ type Props = { ...@@ -18,7 +18,7 @@ type Props = {
const PoolsTable = ({ items, page, isLoading, top }: Props) => { const PoolsTable = ({ items, page, isLoading, top }: Props) => {
return ( return (
<Table> <Table minWidth="900px">
<Thead top={ top ?? ACTION_BAR_HEIGHT_DESKTOP }> <Thead top={ top ?? ACTION_BAR_HEIGHT_DESKTOP }>
<Tr> <Tr>
<Th width="70%">Pool</Th> <Th width="70%">Pool</Th>
......
...@@ -31,7 +31,7 @@ const PoolsTableItem = ({ ...@@ -31,7 +31,7 @@ const PoolsTableItem = ({
<Skeleton isLoaded={ !isLoading }> <Skeleton isLoaded={ !isLoading }>
<Text px={ 2 }>{ getItemIndex(index, page) }</Text> <Text px={ 2 }>{ getItemIndex(index, page) }</Text>
</Skeleton> </Skeleton>
<Box> <Box overflow="hidden">
<PoolEntity pool={ item } fontWeight={ 700 } mb={ 2 } isLoading={ isLoading }/> <PoolEntity pool={ item } fontWeight={ 700 } mb={ 2 } isLoading={ isLoading }/>
<AddressEntity <AddressEntity
address={{ hash: item.contract_address }} address={{ hash: item.contract_address }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment