1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-19 02:51:14 +02:00

loading spinner

This commit is contained in:
Kyle Spearrin 2018-02-13 22:45:31 -05:00
parent c2043c1447
commit 4d5a867ff8
2 changed files with 13 additions and 1 deletions

View File

@ -7,6 +7,8 @@
<base href=""> <base href="">
</head> </head>
<body> <body>
<app-root></app-root> <app-root>
<div id="loading"><i class="fa fa-spinner fa-spin fa-3x"></i></div>
</app-root>
</body> </body>
</html> </html>

View File

@ -162,3 +162,13 @@ form, .form {
display: block; display: block;
} }
} }
app-root > #loading {
display: flex;
text-align: center;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
color: $text-muted;
}