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 (
<div className={css.tabLayoutWrap}>
<div className={classNames(css.tabLayoutWrap, !tabActivated && css.hide)}>
{/* collabsed Main */}
<Container
className={css.tabWrap}

View File

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