f3ca4a4217
- 替换顶栏Logo为七牛logo图片(logo-qiniu.png) - 顶栏高度 56→70px,侧栏宽度 226→282px - 顶栏各元素字号增大约25%,头像26→32px,搜索框240→280px - 侧栏导航项字号13→16px,分组标题10.5→13px,徽标10→12px - 全局基础字号 14→16px
23 lines
453 B
Vue
23 lines
453 B
Vue
<template>
|
|
<div class="shell">
|
|
<AppHeader />
|
|
<AppSidebar />
|
|
<AppMain />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import AppHeader from '@/components/Layout/AppHeader.vue'
|
|
import AppSidebar from '@/components/Layout/AppSidebar.vue'
|
|
import AppMain from '@/components/Layout/AppMain.vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.shell {
|
|
display: grid;
|
|
grid-template-columns: 282px 1fr;
|
|
grid-template-rows: 70px 1fr;
|
|
height: 100vh;
|
|
}
|
|
</style>
|