Link spacing
This commit is contained in:
parent
9c4191dc79
commit
cd4051c082
|
@ -81,7 +81,14 @@ function YourChallengesTable(props: { links: Challenge[] }) {
|
||||||
<thead className="bg-gray-50 text-left text-sm font-semibold text-gray-900">
|
<thead className="bg-gray-50 text-left text-sm font-semibold text-gray-900">
|
||||||
<tr>
|
<tr>
|
||||||
<th className={amountClass}>Amount</th>
|
<th className={amountClass}>Amount</th>
|
||||||
<th className={columnClass}>Link</th>
|
<th
|
||||||
|
className={clsx(
|
||||||
|
columnClass,
|
||||||
|
'text-center sm:pl-10 sm:text-start'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
Link
|
||||||
|
</th>
|
||||||
<th className={columnClass}>Accepted By</th>
|
<th className={columnClass}>Accepted By</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -109,7 +116,12 @@ function YourLinkSummaryRow(props: { challenge: Challenge }) {
|
||||||
{formatMoney(challenge.creatorAmount)}
|
{formatMoney(challenge.creatorAmount)}
|
||||||
</SiteLink>
|
</SiteLink>
|
||||||
</td>
|
</td>
|
||||||
<td className={clsx(columnClass, 'items-center sm:max-w-[200px]')}>
|
<td
|
||||||
|
className={clsx(
|
||||||
|
columnClass,
|
||||||
|
'm:max-w-[200px] text-center sm:text-start'
|
||||||
|
)}
|
||||||
|
>
|
||||||
<Button
|
<Button
|
||||||
color={'gray-white'}
|
color={'gray-white'}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user