Try to fix flashing css grid #2
This commit is contained in:
parent
ea342248de
commit
974d41434e
|
@ -24,8 +24,8 @@ export function ContractCard(props: {
|
|||
|
||||
return (
|
||||
<Link href={contractPath(contract)}>
|
||||
<a>
|
||||
<li className="col-span-1 bg-white hover:bg-gray-100 shadow-md rounded-lg divide-y divide-gray-200">
|
||||
<a className="col-span-1">
|
||||
<li className="bg-white hover:bg-gray-100 shadow-md rounded-lg divide-y divide-gray-200">
|
||||
<div className="card">
|
||||
<div className="card-body p-6">
|
||||
<Row className="justify-between gap-4 mb-2">
|
||||
|
|
|
@ -42,7 +42,7 @@ export function ContractsGrid(props: {
|
|||
}
|
||||
|
||||
return (
|
||||
<ul role="list" className="w-full grid grid-cols-1 gap-6 md:grid-cols-2">
|
||||
<ul className="w-full grid grid-cols-1 gap-6 md:grid-cols-2">
|
||||
{contracts.map((contract) => (
|
||||
<ContractCard
|
||||
contract={contract}
|
||||
|
|
Loading…
Reference in New Issue
Block a user