Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion application/frontend/src/pages/Explorer/GraphDebugPanel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
gap: 8px;
margin-bottom: 8px;
font-size: 14px;
flex-wrap: wrap;
}

&__summary {
Expand All @@ -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;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const GraphDebugPanel = ({ dataStore }: GraphDebugPanelProps) => {
</div>

<div className="graph-debug-panel__table-wrap">
<Table compact size="small" celled>
<Table compact size="small" celled unstackable className="graph-debug-panel__table">
<Table.Header>
<Table.Row>
<Table.HeaderCell>Node</Table.HeaderCell>
Expand Down