18 lines
284 B
CSS
18 lines
284 B
CSS
.Loading {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: inherit;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.LoadingContent {
|
|
margin: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
top: 50%; left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 28px;
|
|
height: 28px;
|
|
box-sizing: border-box;
|
|
} |