Use zero height / width for compute canvas (#3369)

* Make the blockly compute canvas have no height or width
This commit is contained in:
Sam El-Husseini
2019-10-30 10:59:24 -07:00
committed by GitHub
parent f3d978d553
commit f79740c087

View File

@@ -772,6 +772,12 @@ Blockly.Css.CONTENT = [
'.blocklyDropDownDiv .goog-menuitem-rtl .goog-menuitem-icon {',
'float: right;',
'margin-right: -24px;',
'}'
'}',
'.blocklyComputeCanvas {',
'position: absolute;',
'width: 0;',
'height: 0;',
'}',
/* eslint-enable indent */
];