Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(view): 우측 그래프 표시 레이아웃이 무너짐 수정 #576

Merged
merged 8 commits into from
Aug 5, 2024
3 changes: 2 additions & 1 deletion packages/view/src/components/Statistics/Statistics.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
flex-direction: column;
align-items: center;
gap: 5vh;
width: 350px;
padding: 0 20px 20px;
width: 28%;
overflow-y: scroll;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
.cluster-summary__contents {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 12px;
gap: 10px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
overflow-x: hidden;
overflow-y: scroll;
flex-grow: 1;
width: 100%;
width: 70%;
}
Loading