Files
xinfra/frontend/src/layouts/DefaultLayout.vue
T
wonder f3ca4a4217 fix(frontend): 替换Logo、增大顶栏侧栏尺寸及全局字号
- 替换顶栏Logo为七牛logo图片(logo-qiniu.png)
- 顶栏高度 56→70px,侧栏宽度 226→282px
- 顶栏各元素字号增大约25%,头像26→32px,搜索框240→280px
- 侧栏导航项字号13→16px,分组标题10.5→13px,徽标10→12px
- 全局基础字号 14→16px
2026-07-15 15:25:11 +08:00

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>