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

@ -98,6 +98,8 @@ onMounted(async () => {
<style scoped>
.page-container {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.page-header {