-
Notifications
You must be signed in to change notification settings - Fork 83
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
[view] 레이아웃이 잘리는 문제 해결 #731
Conversation
@@ -104,7 +104,7 @@ const Detail = ({ selectedData, clusterId, authSrcMap }: DetailProps) => { | |||
title={id} | |||
PopperProps={{ sx: { ".MuiTooltip-tooltip": { bgcolor: "#3c4048" } } }} | |||
> | |||
<p>{`${id.slice(0, 6)}...`}</p> | |||
<p>{`${id.slice(0, 6)}`}</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍👍👍👍👍👍👍❤️❤️
@@ -19,8 +19,7 @@ body { | |||
} | |||
|
|||
.middle-container { | |||
display: grid; | |||
grid-template-columns: 4fr 2fr; | |||
display: flex; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(궁금) pr 본문에 말씀하신 복잡한 레이아웃이란 무엇을 의미하는건가요??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM입니다!!🥰🥰
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM👍👍
Related issue
close #697 #719
Result
AS IS
TO BE
Work list
grid
에서flex
로 수정하였으며, 오른쪽 차트에flex:1
을 주어 잘리지 않도록 하였습니다.