fix flex
This commit is contained in:
@@ -19,7 +19,6 @@ export function ProjectOverview({ onSelectItem }: { onSelectItem: (title: string
|
|||||||
<div className="overview-page">
|
<div className="overview-page">
|
||||||
<div className="overview-head">
|
<div className="overview-head">
|
||||||
<div>
|
<div>
|
||||||
<Text type="secondary">项目整体快照,帮助你快速了解项目动态</Text>
|
|
||||||
<Title heading={4}>概况</Title>
|
<Title heading={4}>概况</Title>
|
||||||
</div>
|
</div>
|
||||||
<Space>
|
<Space>
|
||||||
|
|||||||
@@ -57,6 +57,16 @@ export function ProjectSidebar({
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<Divider />
|
||||||
|
<section className="tag-cloud">
|
||||||
|
<Text className="section-title">标签</Text>
|
||||||
|
<Space wrap>
|
||||||
|
{['全部', '需求', '设计', '研发', '运营', 'AI'].map((tag) => (
|
||||||
|
<Tag key={tag} color={tag === '全部' ? 'arcoblue' : 'gray'}>{tag}</Tag>
|
||||||
|
))}
|
||||||
|
</Space>
|
||||||
|
</section>
|
||||||
|
|
||||||
<Divider />
|
<Divider />
|
||||||
<section className="recent-sessions">
|
<section className="recent-sessions">
|
||||||
<Text className="section-title">最近会话</Text>
|
<Text className="section-title">最近会话</Text>
|
||||||
@@ -68,15 +78,6 @@ export function ProjectSidebar({
|
|||||||
))}
|
))}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<Divider />
|
|
||||||
<section className="tag-cloud">
|
|
||||||
<Text className="section-title">标签</Text>
|
|
||||||
<Space wrap>
|
|
||||||
{['全部', '需求', '设计', '研发', '运营', 'AI'].map((tag) => (
|
|
||||||
<Tag key={tag} color={tag === '全部' ? 'arcoblue' : 'gray'}>{tag}</Tag>
|
|
||||||
))}
|
|
||||||
</Space>
|
|
||||||
</section>
|
|
||||||
</Sider>
|
</Sider>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ export function WorkspacePage({ onSelectProject }: { onSelectProject: (project:
|
|||||||
<div className="workspace-page overview-page">
|
<div className="workspace-page overview-page">
|
||||||
<div className="overview-head">
|
<div className="overview-head">
|
||||||
<div>
|
<div>
|
||||||
<Text type="secondary">所有项目的统一工作台,汇总项目动态、任务压力和知识资产。</Text>
|
|
||||||
<Title heading={4}>工作台</Title>
|
<Title heading={4}>工作台</Title>
|
||||||
|
<Text type="secondary">所有项目的统一工作台,汇总项目动态、任务压力和知识资产。</Text>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user