mat-k-witts opened a new issue, #37493: URL: https://github.com/apache/superset/issues/37493
## Screenshot <img width="1851" height="320" alt="Image" src="https://github.com/user-attachments/assets/0fc78d90-4bd0-47d6-94e6-d7ac4a02b6ae" /> ## Description When embedding a dashboard using @superset-ui/embedded-sdk, panels that sit side-by-side overlap/encroach on each other. The same dashboard displays correctly in Superset's native UI. The .dashboard-component-chart-holder class uses box-sizing: content-box with padding: 16px. This adds 32px to each panel's calculated width, causing content to overflow into adjacent panels. ## Workaround Add to dashboard custom CSS: ``` .dashboard-component-chart-holder { box-sizing: border-box; } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
