Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Nov 23, 2024
1 parent 52c8b4c commit 78f0710
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/features/messages/cards/CodeBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function CodeBlock({ value }: { value: string }) {
copyValue={value}
width={13}
height={13}
className="absolute right-2 top-2 opacity-70"
className="absolute right-2 top-2 opacity-50"
/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/features/messages/cards/KeyValueRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function KeyValueRow({
{subDisplay && !useFallbackVal && <span className="ml-2 text-xs">{subDisplay}</span>}
</div>
{showCopy && !useFallbackVal && (
<CopyButton copyValue={display} width={13} height={13} className="ml-1.5" />
<CopyButton copyValue={display} width={13} height={13} className="ml-1.5 opacity-60" />
)}
</div>
);
Expand Down
4 changes: 3 additions & 1 deletion src/features/messages/cards/TransactionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ export function DestinationTransactionCard({
Please ensure a relayer is running for this chain.
</div>
)}
<SpinnerIcon className="my-4 scale-75" />
<div className="mt-6 flex items-center justify-center">
<SpinnerIcon width={40} height={40} />
</div>
<CallDataModal debugResult={debugResult} />
</div>
</DeliveryStatus>
Expand Down

0 comments on commit 78f0710

Please sign in to comment.