feat: 限制页面宽度

- 为页面添加1200px的宽度限制,提升其在宽屏下的观感
This commit is contained in:
2025-09-06 17:20:17 +08:00
parent ed4b89f94c
commit 968fd1532f
10 changed files with 46 additions and 88 deletions

View File

@ -129,7 +129,9 @@ useHead({
<style scoped>
.page-container {
min-height: 60vh;
min-height: 80vh;
max-width: 1200px;
margin: 0 auto;
}
.breadcrumb {