Skip to content

Commit

Permalink
chore: fix chart layout
Browse files Browse the repository at this point in the history
  • Loading branch information
soulBit committed Nov 30, 2023
1 parent e3a2305 commit df11454
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,14 @@ export const PoolsTable: FC<PoolsTableProps> = ({
);
const generateExpandedContent = useCallback(
(pool: AmmLiquidityPool) => (
<>
<PoolsStatistics pool={pool} />
<PoolDetails pool={pool} />
</>
<div className="flex flex-row w-full">
<div>
<PoolsStatistics pool={pool} />
</div>
<div className="w-3/4 p-4">
<PoolDetails pool={pool} />
</div>
</div>
),
[],
);
Expand Down

0 comments on commit df11454

Please sign in to comment.