mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
34 lines
463 B
SCSS
34 lines
463 B
SCSS
@import "./loading.vars";
|
|
|
|
// Loading
|
|
// --------------------------------------------------
|
|
|
|
ion-loading {
|
|
@include position(0, 0, 0, 0);
|
|
|
|
position: fixed;
|
|
z-index: $z-index-overlay;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
touch-action: none;
|
|
|
|
contain: strict;
|
|
}
|
|
|
|
ion-loading-controller {
|
|
display: none;
|
|
}
|
|
|
|
.loading-wrapper {
|
|
z-index: $z-index-overlay-wrapper;
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
opacity: 0;
|
|
}
|