Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/components/CCIP/Cards/NetworkCard.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.network-card__container {
display: flex;
padding: var(--space-6x);
gap: var(--space-4x);
gap: var(--space-3x);

background: var(--white);
border: 1px solid var(--gray-200);
Expand All @@ -13,19 +13,23 @@
}

.network-card__container img {
width: var(--space-8x);
height: var(--space-8x);
width: var(--space-10x);
height: var(--space-10x);
margin-top: auto;
margin-bottom: auto;
}

.network-card__container h3 {
font-size: var(--space-4x);
font-weight: var(--font-weight-medium);
line-height: var(--space-6x);
color: var(--gray-950);
margin-bottom: 0;
margin-bottom: var(--space-1x);
}

.network-card__container p {
margin-bottom: 0;
font-size: var(--space-3x);
line-height: var(--space-5x);
color: var(--gray-500);
}
4 changes: 2 additions & 2 deletions src/components/CCIP/Cards/TokenCard.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
}

.token-card__container img {
width: var(--space-8x);
height: var(--space-8x);
width: var(--space-10x);
height: var(--space-10x);
border-radius: 50%;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/CCIP/Tables/ChainTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function ChainTable({ lanes, explorerUrl, sourceNetwork, environment }: TablePro
<tr>
<th>{inOutbound === LaneFilter.Outbound ? "Destination" : "Source"} network</th>
<th>{inOutbound === LaneFilter.Outbound ? "OnRamp" : "OffRamp"} address</th>
{/* <th>Status</th> */}
<th>Status</th>
</tr>
</thead>
<tbody>
Expand Down