Move recommended markets below market white bg onto gray bg

This commit is contained in:
James Grugett 2022-08-25 12:59:26 -05:00
parent b785d4b047
commit 97b648a51e

View File

@ -267,14 +267,14 @@ export function ContractPageContent(
tips={tips}
comments={comments}
/>
{recommendedContracts?.length > 0 && (
<Col className="mx-2 gap-2 sm:mx-0">
<Subtitle text="Recommended" />
<ContractsGrid contracts={recommendedContracts} />
</Col>
)}
</Col>
{recommendedContracts.length > 0 && (
<Col className="gap-2 px-2 sm:px-0">
<Subtitle text="Recommended" />
<ContractsGrid contracts={recommendedContracts} />
</Col>
)}
</Page>
)
}