Skip to content

Commit

Permalink
remove lunar theme (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirius651 authored Feb 6, 2023
1 parent 0794e4b commit 5304308
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
6 changes: 3 additions & 3 deletions src/components/common/Logo.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<div v-if="currentNetworkChain === astarChain.SHIDEN">
<img src="~assets/img/shiden_logo_luna.png" width="200" height="44" />
<img src="~assets/img/shiden_logo.png" width="152" height="44" />
</div>
<div v-else-if="currentNetworkChain === astarChain.SHIBUYA">
<img src="~assets/img/shibuya_logo.png" width="152" height="55" />
</div>
<img
v-else-if="currentNetworkChain === astarChain.ASTAR"
src="~assets/img/astar_logo_luna.png"
width="190"
src="~assets/img/astar_logo.png"
width="200"
height="78"
/>
<div v-else></div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/sidenav/styles/sidebar-desktop.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

.icon {
text-align: center;
width: 200px;
width: 170px;
height: 78px;
margin-left: 8px;
z-index: 1000;
Expand Down
9 changes: 0 additions & 9 deletions src/layouts/DashboardLayout.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<template>
<div id="app--main" class="tw-h-screen tw-flex tw-overflow-hidden">
<template v-if="width >= screenSize.lg">
<divider-new-year />
<sidebar-desktop />
</template>
<div class="tw-flex tw-flex-col tw-w-0 tw-flex-1 tw-overflow-y-auto lg:tw-overflow-hidden">
<portal-header />
<template v-if="screenSize.lg > width">
<divider-new-year-mobile />
<sidebar-mobile />
</template>
<main
Expand All @@ -24,9 +22,6 @@
</div>
</main>
</div>
<!-- <template v-if="width >= screenSize.lg">
</template> -->
</div>
</template>

Expand All @@ -36,16 +31,12 @@ import { useBreakpoints, useGasPrice } from 'src/hooks';
import PortalHeader from 'src/components/header/Header.vue';
import SidebarDesktop from 'components/sidenav/SidebarDesktop.vue';
import SidebarMobile from 'components/sidenav/SidebarMobile.vue';
import DividerNewYear from 'components/common/themes/DividerNewYear.vue';
import DividerNewYearMobile from 'components/common/themes/DividerNewYearMobile.vue';
export default defineComponent({
components: {
PortalHeader,
SidebarMobile,
SidebarDesktop,
DividerNewYear,
DividerNewYearMobile,
},
setup() {
const { width, screenSize } = useBreakpoints();
Expand Down

0 comments on commit 5304308

Please sign in to comment.