forked from mystiq/hydrogen-web
fix svg error in spinner
This commit is contained in:
parent
2010704f14
commit
abc99c2f0b
3 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
export function spinner(t, extraClasses = undefined) {
|
export function spinner(t, extraClasses = undefined) {
|
||||||
return t.svg({className: Object.assign({"spinner": true}, extraClasses), viewBox:"0 0 100% 100%"},
|
return t.svg({className: Object.assign({"spinner": true}, extraClasses), viewBox:"0 0 100 100"},
|
||||||
t.circle({cx:"50%", cy:"50%", r:"45%", pathLength:"100"})
|
t.circle({cx:"50%", cy:"50%", r:"45%", pathLength:"100"})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
fill: none;
|
fill: none;
|
||||||
stroke: currentcolor;
|
stroke: currentcolor;
|
||||||
stroke-width: calc(var(--size) * 0.1);
|
stroke-width: 12;
|
||||||
stroke-linecap: butt;
|
stroke-linecap: butt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<h1>View Gallery</h1>
|
<h1>View Gallery</h1>
|
||||||
<h2 name="session-status">Session Status</h2>
|
<h2 name="session-status">Session Status Bar</h2>
|
||||||
<div id="session-status" class="brawl"></div>
|
<div id="session-status" class="brawl"></div>
|
||||||
<script id="main" type="module">
|
<script id="main" type="module">
|
||||||
import {SessionStatusView} from "./session/SessionStatusView.js";
|
import {SessionStatusView} from "./session/SessionStatusView.js";
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
isConnectNowShown: true,
|
isConnectNowShown: true,
|
||||||
connectNow: () => alert("connecting now")
|
connectNow: () => alert("connecting now")
|
||||||
}));
|
}));
|
||||||
document.getElementById("login").appendChild(view.mount());
|
document.getElementById("session-status").appendChild(view.mount());
|
||||||
</script>
|
</script>
|
||||||
<h2 name="login">Login</h2>
|
<h2 name="login">Login</h2>
|
||||||
<div id="login" class="brawl"></div>
|
<div id="login" class="brawl"></div>
|
||||||
|
|
Loading…
Reference in a new issue