Skip to content

Commit 0b891d5

Browse files
mintsweetabeizn
authored andcommitted
fix: log width overflow (#7264)
1 parent 0c014a5 commit 0b891d5

File tree

1 file changed

+2
-2
lines changed
  • config-ui/src/routes/onboard/components

1 file changed

+2
-2
lines changed

config-ui/src/routes/onboard/components/logs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const Wrapper = styled.div`
3232
justify-content: space-between;
3333
3434
& > span.name {
35-
flex: auto;
35+
width: 220px;
3636
font-weight: 600;
3737
white-space: nowrap;
3838
text-overflow: ellipsis;
@@ -41,7 +41,7 @@ const Wrapper = styled.div`
4141
4242
& > span.progress {
4343
margin-left: 12px;
44-
flex: 0 0 60px;
44+
flex: auto;
4545
}
4646
}
4747

0 commit comments

Comments
 (0)