TabLayout 영역 100%로 인한 개발자 모드 불편사항 처리

This commit is contained in:
jangheon Pyo
2024-01-26 14:32:52 +09:00
parent 7009567824
commit 25cbb26030
2 changed files with 5 additions and 2 deletions

View File

@@ -435,7 +435,7 @@ export default function TabLayout({ topPanelName, onTabActivated }) {
} }
return ( return (
<div className={css.tabLayoutWrap}> <div className={classNames(css.tabLayoutWrap, !tabActivated && css.hide)}>
{/* collabsed Main */} {/* collabsed Main */}
<Container <Container
className={css.tabWrap} className={css.tabWrap}

View File

@@ -1,10 +1,13 @@
.tabLayoutWrap { .tabLayoutWrap {
// width:100%; width: 100%;
height: 100%; height: 100%;
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
display: flex; display: flex;
&.hide {
width: auto;
}
} }
.expandedRootContainer { .expandedRootContainer {
position: absolute; position: absolute;