Bring back cards having different heights in a row

This commit is contained in:
jahooma 2022-01-18 16:55:39 -06:00
parent d3031e0f10
commit ee64c4e923

View File

@ -26,6 +26,7 @@ export function ContractCard(props: {
const { probPercent } = contractMetrics(contract)
return (
<div>
<div
className={clsx(
'bg-white hover:bg-gray-100 shadow-md rounded-lg p-6 relative',
@ -49,6 +50,7 @@ export function ContractCard(props: {
showCloseTime={showCloseTime}
/>
</div>
</div>
)
}