mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
82 lines
1.7 KiB
Vue
82 lines
1.7 KiB
Vue
<template>
|
|
<div
|
|
class="min-h-screen overflow-hidden font-sans antialiased text-primary-black"
|
|
>
|
|
<Navbar />
|
|
<div class="max-w-6xl mx-auto py-12 overflow-x-hidden ">
|
|
<div>
|
|
<Nuxt />
|
|
</div>
|
|
</div>
|
|
|
|
<Backdrop :show="isBackdropShown" @click="closeBackdrop" />
|
|
|
|
<SidebarContext class="grid-sidebar-context" />
|
|
|
|
<NotificationBar />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent, watch } from "@nuxtjs/composition-api";
|
|
import MakerDAOIcon from '~/assets/icons/makerdao.svg?inline'
|
|
import CompoundIcon from '~/assets/icons/compound.svg?inline'
|
|
import AaveIcon from '~/assets/icons/aave.svg?inline'
|
|
import { useWeb3 } from '~/composables/useWeb3'
|
|
import { init as initSidebars } from '~/composables/useSidebar'
|
|
import { useBackdrop } from '@/composables/useBackdrop'
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MakerDAOIcon,
|
|
CompoundIcon,
|
|
AaveIcon,
|
|
},
|
|
setup() {
|
|
const { active, activate, deactivate } = useWeb3();
|
|
const { isShown: isBackdropShown, close: closeBackdrop } = useBackdrop()
|
|
|
|
watch(isBackdropShown, () => {
|
|
if (isBackdropShown.value) {
|
|
document.body.classList.add('overflow-hidden')
|
|
} else {
|
|
document.body.classList.remove('overflow-hidden')
|
|
}
|
|
})
|
|
|
|
initSidebars();
|
|
|
|
return {
|
|
active,
|
|
activate,
|
|
deactivate,
|
|
isBackdropShown,
|
|
closeBackdrop,
|
|
}
|
|
}
|
|
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
:root {
|
|
--min-width-app: 320px;
|
|
--width-sidebar-context: 360px;
|
|
--width-container-main: 1016px;
|
|
--height-navbar: 64px;
|
|
--height-top-banner: 32px;
|
|
|
|
@screen sm {
|
|
--height-navbar: 82px;
|
|
}
|
|
}
|
|
|
|
.grid-sidebar-context {
|
|
grid-row-start: navbar;
|
|
grid-row-end: main;
|
|
|
|
@screen xl {
|
|
grid-area: sidebar-context;
|
|
}
|
|
}
|
|
</style> |