mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-26 14:10:20 +00:00
wip: edit some css
This commit is contained in:
parent
68ed1c04e7
commit
63bbc38f3f
2 changed files with 4 additions and 3 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 @@
|
|||
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<div id="_dioxusroot">
|
||||
_
|
||||
</div>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue