Fix (i) alignment

This commit is contained in:
Sinclair Chen 2022-08-19 09:53:16 -07:00
parent 4d7df00a68
commit 98a0ed99c9

View File

@ -66,17 +66,17 @@ export function ContractInfoDialog(props: { contract: Contract; bets: Bet[] }) {
<tr> <tr>
<td>Payout</td> <td>Payout</td>
<td> <td className="flex gap-1">
{mechanism === 'cpmm-1' ? ( {mechanism === 'cpmm-1' ? (
<> <>
Fixed{' '} Fixed{' '}
<InfoTooltip text="Each YES share is worth M$1 if YES wins." /> <InfoTooltip text="Each YES share is worth M$1 if YES wins." />
</> </>
) : ( ) : (
<div> <>
Parimutuel{' '} Parimutuel{' '}
<InfoTooltip text="Each share is a fraction of the pool. " /> <InfoTooltip text="Each share is a fraction of the pool. " />
</div> </>
)} )}
</td> </td>
</tr> </tr>