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