mirror of https://github.com/fantasticit/think.git
fix: fix margin
This commit is contained in:
parent
e7031776a8
commit
6fba1e4394
|
@ -28,9 +28,11 @@ const Page: NextPage = () => {
|
||||||
<SingleColumnLayout>
|
<SingleColumnLayout>
|
||||||
<Seo title="发现" />
|
<Seo title="发现" />
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<Title heading={3} style={{ marginBottom: 24 }}>
|
<div style={{ marginBottom: 24 }}>
|
||||||
|
<Title heading={3} style={{ margin: '8px 0' }}>
|
||||||
发现
|
发现
|
||||||
</Title>
|
</Title>
|
||||||
|
</div>
|
||||||
<DataRender
|
<DataRender
|
||||||
loading={loading}
|
loading={loading}
|
||||||
loadingContent={() => (
|
loadingContent={() => (
|
||||||
|
|
|
@ -36,7 +36,7 @@ const Page: NextPage = () => {
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className={styles.titleWrap}>
|
<div className={styles.titleWrap}>
|
||||||
<Title heading={3} style={{ margin: '8px 0' }}>
|
<Title heading={3} style={{ margin: '8px 0' }}>
|
||||||
快捷访问
|
模板
|
||||||
</Title>
|
</Title>
|
||||||
<Button onClick={handleAdd}>新建模板</Button>
|
<Button onClick={handleAdd}>新建模板</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -62,7 +62,9 @@ const Page: NextPage = () => {
|
||||||
<SingleColumnLayout>
|
<SingleColumnLayout>
|
||||||
<Seo title="知识库" />
|
<Seo title="知识库" />
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<Title heading={3}>知识库</Title>
|
<Title heading={3} style={{ margin: '8px 0' }}>
|
||||||
|
知识库
|
||||||
|
</Title>
|
||||||
<Tabs type="button" style={{ marginTop: 24 }}>
|
<Tabs type="button" style={{ marginTop: 24 }}>
|
||||||
<TabPane tab="全部" itemKey="all">
|
<TabPane tab="全部" itemKey="all">
|
||||||
<Workspaces hook={useAllWikis} />
|
<Workspaces hook={useAllWikis} />
|
||||||
|
|
Loading…
Reference in New Issue