mirror of https://github.com/fantasticit/think.git
client: update height
This commit is contained in:
parent
fa91f87675
commit
8543c77e06
|
@ -51,6 +51,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.transferWrap {
|
.transferWrap {
|
||||||
|
margin-top: 16px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: calc(100vh - 268px);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,12 +82,11 @@ export const WikiDocumentsShare: React.FC<IProps> = ({ wikiId }) => {
|
||||||
type="info"
|
type="info"
|
||||||
icon={null}
|
icon={null}
|
||||||
closeIcon={null}
|
closeIcon={null}
|
||||||
title={<Title heading={5}>隐私管理</Title>}
|
|
||||||
description={<Text>在下方进行选择以公开(或取消)文档</Text>}
|
description={<Text>在下方进行选择以公开(或取消)文档</Text>}
|
||||||
/>
|
/>
|
||||||
<div className={styles.transferWrap}>
|
<div className={styles.transferWrap}>
|
||||||
<Transfer
|
<Transfer
|
||||||
style={{ width: '100%', marginTop: 16 }}
|
style={{ width: '100%', height: '100%' }}
|
||||||
dataSource={documents}
|
dataSource={documents}
|
||||||
filter={customFilter}
|
filter={customFilter}
|
||||||
value={publicDocumentIds}
|
value={publicDocumentIds}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
|
|
||||||
.tocsWrap {
|
.tocsWrap {
|
||||||
height: 560px;
|
height: calc(100vh - 268px);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
border: 1px solid var(--semi-color-border);
|
border: 1px solid var(--semi-color-border);
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
|
|
|
@ -120,7 +120,6 @@ export const WikiTocsManager: React.FC<IProps> = ({ wikiId }) => {
|
||||||
type="info"
|
type="info"
|
||||||
icon={null}
|
icon={null}
|
||||||
closeIcon={null}
|
closeIcon={null}
|
||||||
title={<Title heading={5}>目录管理</Title>}
|
|
||||||
description={<Text>在下方进行拖拽以重新整理目录结构</Text>}
|
description={<Text>在下方进行拖拽以重新整理目录结构</Text>}
|
||||||
style={{ marginBottom: 16 }}
|
style={{ marginBottom: 16 }}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue