pref(ideContainer):调整日志栏最小高度并优化右侧边栏渲染逻辑

master
钟良源 6 months ago
parent 9ce06903fc
commit 1b6a752b20

@ -68,7 +68,7 @@ const RightSideBar: React.FC = () => {
</span>
}
>
<ResizeBox
{activeTab === '1' && <ResizeBox
className={styles['right-resize-box']}
directions={['left']}
style={{
@ -79,7 +79,7 @@ const RightSideBar: React.FC = () => {
onMoving={handleResize}
>
<ChatBox></ChatBox>
</ResizeBox>
</ResizeBox>}
</TabPane>
<TabPane
key="2"
@ -90,7 +90,7 @@ const RightSideBar: React.FC = () => {
</span>
}
>
<ResizeBox
{activeTab === '2' && <ResizeBox
className={styles['right-resize-box']}
directions={['left']}
style={{
@ -101,7 +101,7 @@ const RightSideBar: React.FC = () => {
onMoving={handleResize}
>
<Market></Market>
</ResizeBox>
</ResizeBox>}
</TabPane>
</Tabs>
</div>

@ -1,6 +1,6 @@
.logBar {
width: calc(100% - 220px);
min-height: 150px;
min-height: 250px;
position: absolute;
bottom: 0;
right: 0;

Loading…
Cancel
Save