Make explorer table views more mobile friendly (#11358)

This commit is contained in:
Justin Starry
2020-08-04 20:44:16 +08:00
committed by GitHub
parent 5b4cb083f1
commit 247e361d23
25 changed files with 162 additions and 139 deletions

View File

@@ -34,28 +34,28 @@ export function AssignWithSeedDetailsCard(props: {
>
<tr>
<td>Program</td>
<td className="text-right">
<td className="text-lg-right">
<Address pubkey={SystemProgram.programId} alignRight link />
</td>
</tr>
<tr>
<td>Account Address</td>
<td className="text-right">
<td className="text-lg-right">
<Address pubkey={params.accountPubkey} alignRight link />
</td>
</tr>
<tr>
<td>Base Address</td>
<td className="text-right">
<td className="text-lg-right">
<Address pubkey={params.basePubkey} alignRight link />
</td>
</tr>
<tr>
<td>Seed</td>
<td className="text-right">
<td className="text-lg-right">
<Copyable right text={params.seed}>
<code>{params.seed}</code>
</Copyable>
@@ -64,7 +64,7 @@ export function AssignWithSeedDetailsCard(props: {
<tr>
<td>Assigned Owner</td>
<td className="text-right">
<td className="text-lg-right">
<Address pubkey={params.programId} alignRight link />
</td>
</tr>