Skip to content

Commit 035966a

Browse files
committed
fix devtools overflowing it's container on version update
1 parent f7bb866 commit 035966a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dash/dash-renderer/src/components/error/menu/DebugMenu.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@
140140
max-width: 50px;
141141
}
142142
.dash-debug-menu__outer.dash-debug-menu__outer--expanded {
143-
max-width: 682px;
143+
max-width: calc(100vw - 50px);
144+
overflow-x: auto;
144145
}
145146

146147
.dash-debug-menu__upgrade-tooltip {
@@ -184,6 +185,7 @@
184185
align-items: stretch;
185186
margin-left: 15px;
186187
transition: all 0.5s ease;
188+
flex-shrink: 0;
187189
}
188190

189191
.dash-debug-menu__version {

0 commit comments

Comments
 (0)