Skip to content

Commit 45414a5

Browse files
committed
2 parents ca5e5c9 + b0efb77 commit 45414a5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

components/LeftSidebar.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ const handleOnClose = () => {
196196
<Flex justify="between" align="center">
197197
<NuxtLink to="/" :class="$style.logo">
198198
<Flex align="center" gap="8">
199-
<Icon name="logo" size="16" color="tertiary" :class="$style.logo_symbol" />
199+
<Icon v-if="getNetworkName() !== 'Mammoth'" name="logo" size="16" color="tertiary" :class="$style.logo_symbol" />
200+
<Text v-else size="16" style="filter: grayscale(1)">🦣</Text>
200201

201202
<svg width="86" height="14" viewBox="0 0 96 16" xmlns="http://www.w3.org/2000/svg" :class="$style.logo_name">
202203
<path

layouts/default.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ import { getNetworkName } from "@/services/utils/general"
4646
4747
z-index: -1;
4848
49-
filter: grayscale(0.5);
50-
opacity: 0.3;
49+
filter: grayscale(0.3);
50+
opacity: 0.5;
5151
-webkit-mask-image: -webkit-gradient(linear, left 0%, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
5252
}
5353

0 commit comments

Comments
 (0)