Skip to content

Commit d9df265

Browse files
authored
Merge pull request #312 from aaron1604/fix-container-fix-height-issue
fix: container fixed height issue
2 parents 8c9f90f + fb054e6 commit d9df265

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/packages/lowcoder/src/comps/comps/tabs/tabbedContainerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const TabbedContainer = (props: TabbedContainerProps) => {
164164
// log.debug("TabbedContainer. props: ", props);
165165

166166
return (
167-
<div style={{padding: props.style.margin}}>
167+
<div style={{padding: props.style.margin, height: '100%'}}>
168168
<StyledTabs
169169
activeKey={activeKey}
170170
$style={style}

client/packages/lowcoder/src/comps/comps/triContainerComp/triContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function TriContainer(props: TriContainerProps) {
7878
const paddingWidth = isMobile ? 7 : 19;
7979

8080
return (
81-
<div style={{padding: style.margin}}>
81+
<div style={{padding: style.margin, height: '100%'}}>
8282
<Wrapper $style={style}>
8383
{showHeader && (
8484
<BackgroundColorContext.Provider value={container.style.headerBackground}>

0 commit comments

Comments
 (0)