fix padding on daily movers
This commit is contained in:
parent
853e3e4896
commit
2f2c586d5d
|
@ -37,12 +37,12 @@ export function ProbChangeTable(props: {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Col className="mb-4 w-full gap-4 rounded-lg md:flex-row">
|
<Col className="mb-4 w-full gap-4 rounded-lg md:flex-row">
|
||||||
<Col className="flex-1 gap-4">
|
<Col className="flex-1">
|
||||||
{filteredPositiveChanges.map((contract) => (
|
{filteredPositiveChanges.map((contract) => (
|
||||||
<ContractCardProbChange key={contract.id} contract={contract} />
|
<ContractCardProbChange key={contract.id} contract={contract} />
|
||||||
))}
|
))}
|
||||||
</Col>
|
</Col>
|
||||||
<Col className="flex-1 gap-4">
|
<Col className="flex-1">
|
||||||
{filteredNegativeChanges.map((contract) => (
|
{filteredNegativeChanges.map((contract) => (
|
||||||
<ContractCardProbChange key={contract.id} contract={contract} />
|
<ContractCardProbChange key={contract.id} contract={contract} />
|
||||||
))}
|
))}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user