2021-07-17 21:44:21 +00:00
|
|
|
<template>
|
2021-07-24 23:40:30 +00:00
|
|
|
<div class="min-h-screen overflow-hidden font-sans antialiased text-primary-black">
|
2021-07-17 21:44:21 +00:00
|
|
|
<Navbar />
|
2021-07-24 23:40:30 +00:00
|
|
|
<div class="max-w-6xl mx-auto py-12 overflow-x-hidden ">
|
2021-07-21 20:53:46 +00:00
|
|
|
<div>
|
2021-07-17 21:44:21 +00:00
|
|
|
<Nuxt />
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-24 23:40:30 +00:00
|
|
|
<SidebarContext class="grid-sidebar-context" />
|
|
|
|
|
|
|
|
<NotificationBar />
|
2021-07-17 21:44:21 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
2021-07-17 21:52:42 +00:00
|
|
|
import MakerDAOIcon from '~/assets/icons/makerdao.svg?inline'
|
|
|
|
import CompoundIcon from '~/assets/icons/compound.svg?inline'
|
|
|
|
import AaveIcon from '~/assets/icons/aave.svg?inline'
|
2021-07-19 19:35:31 +00:00
|
|
|
import { useWeb3 } from '~/composables/useWeb3'
|
2021-07-24 23:40:30 +00:00
|
|
|
import { init as initSidebars } from '~/composables/useSidebar'
|
2021-07-17 21:44:21 +00:00
|
|
|
export default defineComponent({
|
2021-07-17 21:52:42 +00:00
|
|
|
components: {
|
|
|
|
MakerDAOIcon,
|
|
|
|
CompoundIcon,
|
|
|
|
AaveIcon,
|
2021-07-19 19:35:31 +00:00
|
|
|
},
|
|
|
|
setup() {
|
|
|
|
const { active, activate, deactivate } = useWeb3();
|
|
|
|
|
2021-07-24 23:40:30 +00:00
|
|
|
initSidebars();
|
|
|
|
|
2021-07-19 19:35:31 +00:00
|
|
|
return {
|
|
|
|
active,
|
|
|
|
activate,
|
|
|
|
deactivate,
|
|
|
|
}
|
2021-07-17 21:52:42 +00:00
|
|
|
}
|
2021-07-17 21:44:21 +00:00
|
|
|
|
|
|
|
})
|
2021-07-24 23:40:30 +00:00
|
|
|
</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>
|