diff --git a/examples/assets/calculator.css b/examples/assets/calculator.css index ddada30f8..047b618ad 100644 --- a/examples/assets/calculator.css +++ b/examples/assets/calculator.css @@ -8,6 +8,7 @@ html { body { margin: 0; font: 100 14px 'Roboto'; + overflow: hidden; } button { @@ -52,7 +53,7 @@ button:active { } #wrapper .calculator { - box-shadow: 0px 0px 20px 0px #aaa; + /* box-shadow: 0px 0px 20px 0px #aaa; */ } .calculator-display { diff --git a/packages/webview/src/index.html b/packages/webview/src/index.html index 7513ec41e..902238727 100644 --- a/packages/webview/src/index.html +++ b/packages/webview/src/index.html @@ -123,7 +123,7 @@ async function initialize() { const reply = await rpc.call('initiate'); - const interpreter = new Interpreter(window.document.getElementById("app").firstChild); + const interpreter = new Interpreter(window.document.getElementById("_dioxusroot").firstChild); console.log(reply); for (let x = 0; x < reply.length; x++) { @@ -142,7 +142,7 @@ -
+
_