Skip to content

Commit b259cf1

Browse files
committed
feat: take 100% of available height
1 parent f6bf573 commit b259cf1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/GraphPlugin.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,10 @@ class GraphPlugin {
9090

9191
// Create container
9292
const container = document.createElement('div');
93+
container.id = 'yasgui-graph-plugin-container';
9394
container.style.width = '100%';
94-
container.style.height = '600px';
95+
container.style.minHeight = '500px';
96+
container.style.height = '100%';
9597
container.style.position = 'relative';
9698
container.style.overflow = 'hidden';
9799
this.yasr.resultsEl.appendChild(container);

0 commit comments

Comments
 (0)