Skip to content

Commit 6477b96

Browse files
committed
fix treemap button & donation link
1 parent 084a860 commit 6477b96

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

components/TheFooter.vue

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const handleChangeTheme = (theme) => {
6060
<template>
6161
<Flex tag="footer" justify="center" :class="$style.wrapper">
6262
<Flex justify="between" wide :class="$style.container">
63-
<Flex direction="column" gap="16">
63+
<Flex direction="column" gap="12">
6464
<Flex align="center" gap="8">
6565
<Icon name="logo" size="14" color="tertiary" />
6666
<Text size="13" weight="500" color="secondary">Celenium</Text>
@@ -76,6 +76,17 @@ const handleChangeTheme = (theme) => {
7676
</Flex>
7777
</a>
7878
</Flex>
79+
80+
<NuxtLink to="/address/celestia15ans77hr2uxefyn6fa2lcsvpngwevuaugth7f5">
81+
<Flex align="center" gap="8">
82+
<Text size="12" weight="500" color="support">Donations: </Text>
83+
<Text size="12" weight="500" color="tertiary">celestia</Text>
84+
<Flex align="center" gap="3">
85+
<div v-for="dot in 3" class="dot" />
86+
</Flex>
87+
<Text size="12" weight="500" color="tertiary">wevu augt h7f5</Text>
88+
</Flex>
89+
</NuxtLink>
7990
</Flex>
8091

8192
<Flex direction="column" align="end" gap="16">

pages/namespaces/index.vue

Lines changed: 14 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,18 @@ const handleLast = async () => {
146146

147147
<template>
148148
<Flex direction="column" wide :class="$style.wrapper">
149-
<Breadcrumbs
150-
:items="[
151-
{ link: '/', name: 'Explore' },
152-
{ link: '/namespaces', name: `Namespaces` },
153-
]"
154-
:class="$style.breadcrumbs"
155-
/>
149+
<Flex align="end" justify="between" :class="$style.breadcrumbs">
150+
<Breadcrumbs
151+
:items="[
152+
{ link: '/', name: 'Explore' },
153+
{ link: '/namespaces', name: `Namespaces` },
154+
]"
155+
/>
156+
157+
<Button link="/namespaces/treemap" type="secondary" size="mini">
158+
<Icon name="treemap" size="12" color="secondary" /> Treemap View
159+
</Button>
160+
</Flex>
156161

157162
<Flex wide direction="column" gap="4">
158163
<Flex justify="between" :class="$style.header">
@@ -335,12 +340,6 @@ const handleLast = async () => {
335340
</table>
336341
</div>
337342
</Flex>
338-
339-
<Flex align="center" :class="$style.footer">
340-
<Button link="/namespaces/treemap" type="secondary" size="mini">
341-
<Icon name="treemap" size="12" color="secondary" /> Open Treemap View
342-
</Button>
343-
</Flex>
344343
</Flex>
345344
</Flex>
346345
</template>
@@ -349,7 +348,7 @@ const handleLast = async () => {
349348
.wrapper {
350349
max-width: calc(var(--base-width) + 48px);
351350
352-
padding: 40px 24px 60px 24px;
351+
padding: 26px 24px 60px 24px;
353352
}
354353
355354
.breadcrumbs {
@@ -365,21 +364,12 @@ const handleLast = async () => {
365364
padding: 0 16px;
366365
}
367366
368-
.footer {
369-
height: 46px;
370-
371-
border-radius: 4px 4px 8px 8px;
372-
background: var(--card-background);
373-
374-
padding: 0 16px;
375-
}
376-
377367
.table_scroller {
378368
overflow-x: auto;
379369
}
380370
381371
.table {
382-
border-radius: 4px;
372+
border-radius: 4px 4px 8px 8px;
383373
background: var(--card-background);
384374
385375
padding-bottom: 12px;

0 commit comments

Comments
 (0)