Skip to content

Commit 4d6ee48

Browse files
fix: use flex-wrap wrap for graceful wrapping at zoom >100%
Changed flex-wrap from nowrap to wrap and removed redundant media query. At 100% zoom all controls stay on one row; at 125%+ they wrap cleanly. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent bd4e5f5 commit 4d6ee48

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

src/ContentProcessorWeb/src/Pages/DefaultPage/Panels.styles.scss

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,12 @@
5050

5151
.topContainer {
5252
display: flex;
53-
flex-wrap: nowrap;
53+
flex-wrap: wrap;
5454
align-items: start;
5555
gap: 10px;
5656
padding: 0px 16px 16px 16px;
5757
}
5858

59-
@media (max-width: 1600px) {
60-
.topContainer {
61-
flex-wrap: wrap;
62-
align-items: start;
63-
}
64-
}
65-
6659

6760
}
6861

0 commit comments

Comments
 (0)