You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
356 B
22 lines
356 B
<template>
|
|
<TopNav />
|
|
<div class="home-frame">
|
|
<BoContainer class="home-container">
|
|
<slot />
|
|
</BoContainer>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.home-frame {
|
|
padding-top: 64px;
|
|
min-height: 100vh;
|
|
background: var(--color-canvas);
|
|
}
|
|
|
|
.home-container {
|
|
min-height: calc(100vh - 64px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
</style>
|
|
|