diff --git a/examples/circlegraph/circlegraph.html b/examples/circlegraph/circlegraph.html
index d85d36c2..a13ca186 100644
--- a/examples/circlegraph/circlegraph.html
+++ b/examples/circlegraph/circlegraph.html
@@ -37,7 +37,7 @@
diff --git a/packages/sprotty/src/features/export/svg-exporter.ts b/packages/sprotty/src/features/export/svg-exporter.ts
index f7a38d02..84397263 100644
--- a/packages/sprotty/src/features/export/svg-exporter.ts
+++ b/packages/sprotty/src/features/export/svg-exporter.ts
@@ -72,7 +72,8 @@ export class SvgExporter {
docCopy.close();
const svgElementNew = docCopy.getElementById(svgElementOrig.id)!;
svgElementNew.removeAttribute('opacity');
- this.copyStyles(svgElementOrig, svgElementNew, ['width', 'height', 'opacity']);
+ // inline-size copied from sprotty-hidden svg shrinks the svg so it is not visible.
+ this.copyStyles(svgElementOrig, svgElementNew, ['width', 'height', 'opacity', 'inline-size']);
svgElementNew.setAttribute('version', '1.1');
const bounds = this.getBounds(root);
svgElementNew.setAttribute('viewBox', `${bounds.x} ${bounds.y} ${bounds.width} ${bounds.height}`);