feat: added blocklyToolboxFlyout CSS class to the flyout (#8386)

This commit is contained in:
Suryansh Shakya
2024-07-17 23:15:11 +05:30
committed by GitHub
parent e1753ae066
commit 0a1524f577

View File

@@ -143,7 +143,9 @@ export class Toolbox
this.flyout_ = this.createFlyout_();
this.HtmlDiv = this.createDom_(this.workspace_);
dom.insertAfter(this.flyout_.createDom('svg'), svg);
const flyoutDom = this.flyout_.createDom('svg');
dom.addClass(flyoutDom, 'blocklyToolboxFlyout');
dom.insertAfter(flyoutDom, svg);
this.setVisible(true);
this.flyout_.init(workspace);