Make list of contract's bets be a card. Underline contract question as a link.
This commit is contained in:
parent
81d3c09e60
commit
5565bc5455
|
@ -90,31 +90,31 @@ function MyContractBets(props: { contract: Contract; bets: Bet[] }) {
|
||||||
const { resolution } = contract
|
const { resolution } = contract
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="px-4">
|
<div className="p-6 bg-white card card-body shadow-xl ">
|
||||||
<Link href={path(contract)}>
|
<Link href={path(contract)}>
|
||||||
<a>
|
<a>
|
||||||
<div className="font-medium text-indigo-700 mb-1">
|
<div className="font-medium text-indigo-700 mb-1 hover:underline hover:decoration-indigo-400 hover:decoration-2">
|
||||||
{contract.question}
|
{contract.question}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Row className="gap-2 text-gray-500 text-sm">
|
|
||||||
<div>
|
|
||||||
<UserLink displayName={contract.creatorName} />
|
|
||||||
</div>
|
|
||||||
{resolution && (
|
|
||||||
<>
|
|
||||||
<div>•</div>
|
|
||||||
<div>
|
|
||||||
Resolved {resolution === 'YES' && <YesLabel />}
|
|
||||||
{resolution === 'NO' && <NoLabel />}
|
|
||||||
{resolution === 'CANCEL' && <CancelLabel />}
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</Row>
|
|
||||||
</a>
|
</a>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
|
<Row className="gap-2 text-gray-500 text-sm">
|
||||||
|
<div>
|
||||||
|
<UserLink displayName={contract.creatorName} />
|
||||||
|
</div>
|
||||||
|
{resolution && (
|
||||||
|
<>
|
||||||
|
<div>•</div>
|
||||||
|
<div>
|
||||||
|
Resolved {resolution === 'YES' && <YesLabel />}
|
||||||
|
{resolution === 'NO' && <NoLabel />}
|
||||||
|
{resolution === 'CANCEL' && <CancelLabel />}
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Row>
|
||||||
|
|
||||||
<Spacer h={6} />
|
<Spacer h={6} />
|
||||||
|
|
||||||
<MyBetsSummary contract={contract} bets={bets} />
|
<MyBetsSummary contract={contract} bets={bets} />
|
||||||
|
|
Loading…
Reference in New Issue
Block a user