We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fefa995 commit 15fac52Copy full SHA for 15fac52
1 file changed
utils/misc/nodejs-terminal/v2.0/nodejs-terminal-v2.0.html
@@ -344,10 +344,11 @@
344
var opts = {par:viewport.body};
345
var snippet_console = await mod.component('snippet-console',attrs,opts);
346
347
- snippet_console.__host.style.height = '100%';
348
- snippet_console.css.insert_rule('#root {height:100%}');
349
- snippet_console.editor.css.insert_rule(':host {flex:1}');
350
- snippet_console.editor.css.insert_rule('#root {height:100%}');
+ snippet_console.css.insert_rule([
+ ':host {height:100%;}',
+ '#root {height:100%}'
+ ]);
351
+ snippet_console.editor.css.insert_rule([':host {flex:1}','#root {height:100%}']);
352
353
snippet_console.ctx = {xyz:123};
354
0 commit comments