feat: 新增页面标签页组件

This commit is contained in:
ZhuRui
2026-07-27 16:29:12 +08:00
parent e238328919
commit 826a541a60
8 changed files with 529 additions and 47 deletions
+18
View File
@@ -113,3 +113,21 @@
display: flex;
flex-direction: column;
}
// ── 顶部行:原 Header 中的三个区域(折叠按钮 / 面包屑 / 右侧账号信息)整体包成一个 row ──
.headerRow {
padding: 0 16px;
width: 100%;
height: 48px;
display: flex;
align-items: center;
}
// ── 页面标签栏容器(Chrome 风格 PageTabs 的外壳) ──
.pageTabs {
width: 100%;
padding: 4px 16px 0 16px;
height: 42px;
background: #fff;
border-top: 1px solid #f0f0f0;
}