Skip to content

Commit 550eefe

Browse files
committed
Update testnet and devnet buttons
1 parent 4e793d1 commit 550eefe

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/app/pages/HomePage/EcosystemCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ export const EcosystemCard: FC<EcosystemCardProps> = ({
128128
</CardContent>
129129
<CardFooter>
130130
{footer || (
131-
<>
132-
<Button variant="link" size="lg" className="flex-1" asChild>
131+
<div className="flex w-full gap-4">
132+
<Button variant="outline" size="lg" className="flex-1" asChild>
133133
<RouterLink to={RouteUtils.getDashboardRoute({ network: 'testnet', layer })}>
134134
{t('common.testnet')}
135135
</RouterLink>
@@ -140,7 +140,7 @@ export const EcosystemCard: FC<EcosystemCardProps> = ({
140140
<ArrowRight />
141141
</RouterLink>
142142
</Button>
143-
</>
143+
</div>
144144
)}
145145
</CardFooter>
146146
</Card>

src/app/pages/HomePage/PontusXCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ export const PontusXCard: FC = () => {
6464
latestBlock={pontusxStatusQuery?.data?.data?.latest_block}
6565
activeNodes={pontusxStatusQuery?.data?.data?.active_nodes}
6666
footer={
67-
<>
68-
<Button variant="link" size="lg" className="flex-1" asChild>
67+
<div className="flex w-full gap-4">
68+
<Button variant="outline" size="lg" className="flex-1" asChild>
6969
<RouterLink to={RouteUtils.getDashboardRoute({ network: 'testnet', layer: 'pontusxdev' })}>
7070
{t('common.devnet')}
7171
</RouterLink>
@@ -76,7 +76,7 @@ export const PontusXCard: FC = () => {
7676
<ArrowRight />
7777
</RouterLink>
7878
</Button>
79-
</>
79+
</div>
8080
}
8181
/>
8282
)

0 commit comments

Comments
 (0)