TabLayout 영역 100%로 인한 개발자 모드 불편사항 처리
This commit is contained in:
@@ -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}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user