diff --git a/application/frontend/src/pages/Explorer/GraphDebugPanel.scss b/application/frontend/src/pages/Explorer/GraphDebugPanel.scss index c297682ac..5b0c800c7 100644 --- a/application/frontend/src/pages/Explorer/GraphDebugPanel.scss +++ b/application/frontend/src/pages/Explorer/GraphDebugPanel.scss @@ -11,6 +11,7 @@ gap: 8px; margin-bottom: 8px; font-size: 14px; + flex-wrap: wrap; } &__summary { @@ -26,13 +27,20 @@ } &__table-wrap { + width: 100%; overflow-x: auto; - max-height: 400px; overflow-y: auto; + max-height: 400px; + -webkit-overflow-scrolling: touch; + } + + &__table { + min-width: 700px; } &__node-name { font-family: monospace; font-size: 12px; + white-space: nowrap; } } diff --git a/application/frontend/src/pages/Explorer/GraphDebugPanel.tsx b/application/frontend/src/pages/Explorer/GraphDebugPanel.tsx index 99833a21e..eaf44ce47 100644 --- a/application/frontend/src/pages/Explorer/GraphDebugPanel.tsx +++ b/application/frontend/src/pages/Explorer/GraphDebugPanel.tsx @@ -77,7 +77,7 @@ export const GraphDebugPanel = ({ dataStore }: GraphDebugPanelProps) => {