Skip to content

Commit

Permalink
Merge pull request #731 from pcwadarong/main
Browse files Browse the repository at this point in the history
[view] 레이아웃이 잘리는 문제 해결
  • Loading branch information
pcwadarong authored Sep 23, 2024
2 parents 011bbf8 + 3b110f7 commit 0bf737d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions packages/view/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ body {
}

.middle-container {
display: grid;
grid-template-columns: 4fr 2fr;
display: flex;
height: calc(100vh - 200px);
padding: 20px;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/view/src/components/Detail/Detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
</Tooltip>
</a>
</div>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

.vertical-cluster-list {
display: flex;
flex: 1;
flex-direction: column;

&__header {
Expand Down

0 comments on commit 0bf737d

Please sign in to comment.