mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
30 lines
482 B
SCSS
30 lines
482 B
SCSS
|
|
/**
|
|
* Loading
|
|
* --------------------------------------------------
|
|
*/
|
|
|
|
.loading {
|
|
@include ng-hide-fade(0.2s);
|
|
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
z-index: $z-index-loading;
|
|
padding: $loading-padding;
|
|
|
|
border-radius: $loading-border-radius;
|
|
background-color: $loading-bg-color;
|
|
|
|
color: $loading-text-color;
|
|
|
|
text-align: center;
|
|
text-overflow: ellipsis;
|
|
font-size: $loading-font-size;
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: $loading-text-color;
|
|
}
|
|
}
|