UNPKG

619 BSCSSView Raw
1/**
2 * @license
3 * Copyright Akveo. All Rights Reserved.
4 * Licensed under the MIT License. See License.txt in the project root for license information.
5 */
6
7:host {
8 opacity: 1;
9 position: absolute;
10 border-radius: inherit;
11 top: 0;
12 right: 0;
13 left: 0;
14 bottom: 0;
15 overflow: hidden;
16 z-index: 9999;
17 display: flex;
18 justify-content: center;
19 align-items: center;
20 visibility: visible;
21
22 .spin-circle {
23 animation: spin 0.8s infinite linear;
24 border-radius: 50%;
25 border-style: solid;
26 border-width: 0.125em;
27 width: 1em;
28 height: 1em;
29 }
30
31 .message {
32 margin-left: 0.5rem;
33 }
34}