Skip to content
This repository was archived by the owner on Mar 18, 2026. It is now read-only.

Commit 778dbba

Browse files
authored
Merge pull request #271 from X2bee/main
fix monitoring
2 parents 1ec685b + 97c8992 commit 778dbba

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

src/app/main/modelSection/assets/ModelPage.module.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ $white: #ffffff;
3030
padding: 1rem;
3131
transition: all 0.5s ease;
3232
overflow: hidden;
33-
height: 100vh;
34-
max-height: 100vh;
35-
33+
height: calc(100vh - 200px);
34+
min-height: 600px;
35+
3636
.container {
3737
width: 100%;
3838
max-width: 1200px;

src/app/main/workflowSection/assets/MainPage.module.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@
8686
}
8787
}
8888

89+
.contentBody {
90+
height: 100%;
91+
display: flex;
92+
flex-direction: column;
93+
}
94+
8995
// Exec-Monitor Integration
9096
// 통합 화면 스타일은 기존 contentArea를 상속받아 사용
9197

src/app/main/workflowSection/components/ContentArea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const ContentArea: React.FC<ContentAreaProps> = ({
2121
<div className={styles.headerButtons}>{headerButtons}</div>
2222
)}
2323
</header>
24-
<div>{children}</div>
24+
<div className={styles.contentBody}>{children}</div>
2525
</div>
2626
);
2727
};

0 commit comments

Comments
 (0)