forked from mystiq/hydrogen-web
Move spinner before the text
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
60793798c7
commit
5c0c59044f
2 changed files with 2 additions and 2 deletions
|
@ -793,7 +793,7 @@ button.link {
|
||||||
}
|
}
|
||||||
|
|
||||||
.LoadingView .spinner {
|
.LoadingView .spinner {
|
||||||
margin-left: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Right Panel */
|
/* Right Panel */
|
||||||
|
|
|
@ -3,6 +3,6 @@ import {spinner} from "../../common.js";
|
||||||
|
|
||||||
export class LoadingView extends TemplateView {
|
export class LoadingView extends TemplateView {
|
||||||
render(t) {
|
render(t) {
|
||||||
return t.div({ className: "LoadingView" }, ["Loading", spinner(t)]);
|
return t.div({ className: "LoadingView" }, [spinner(t), "Loading"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue