mirror of https://github.com/fantasticit/think.git
client: update tocs style
This commit is contained in:
parent
5f05715ed1
commit
860e2471e5
|
@ -3,6 +3,16 @@
|
|||
height: 100%;
|
||||
padding-top: 12px;
|
||||
overflow: auto;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
> main {
|
||||
flex: 1;
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.titleWrap {
|
||||
|
|
|
@ -48,6 +48,7 @@ export const WikiTocs: React.FC<IProps> = ({
|
|||
|
||||
return (
|
||||
<div className={styles.wrap}>
|
||||
<header>
|
||||
<DataRender
|
||||
loading={wikiLoading}
|
||||
loadingContent={
|
||||
|
@ -225,7 +226,9 @@ export const WikiTocs: React.FC<IProps> = ({
|
|||
</div>
|
||||
)}
|
||||
/>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div className={styles.treeWrap}>
|
||||
<DataRender
|
||||
loading={starDocumentsLoading}
|
||||
|
@ -294,6 +297,7 @@ export const WikiTocs: React.FC<IProps> = ({
|
|||
)}
|
||||
/>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -43,6 +43,7 @@ export const WikiPublicTocs: React.FC<IProps> = ({
|
|||
|
||||
return (
|
||||
<div className={styles.wrap}>
|
||||
<header>
|
||||
<div className={styles.navItemWrap}>
|
||||
<div className={styles.navItem}>
|
||||
<Space>
|
||||
|
@ -105,8 +106,10 @@ export const WikiPublicTocs: React.FC<IProps> = ({
|
|||
}}
|
||||
isActive={pathname === '/share/wiki/[wikiId]'}
|
||||
/>
|
||||
</header>
|
||||
|
||||
<div className={styles.treeWrap} style={{ marginTop: 12 }}>
|
||||
<main>
|
||||
<div className={styles.treeWrap}>
|
||||
<DataRender
|
||||
loading={tocsLoading}
|
||||
loadingContent={
|
||||
|
@ -139,6 +142,7 @@ export const WikiPublicTocs: React.FC<IProps> = ({
|
|||
)}
|
||||
/>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue