37 lines
719 B
SCSS
37 lines
719 B
SCSS
.nut-loading-page {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&__warpper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: -150px;
|
|
|
|
/* #ifndef APP-NVUE */
|
|
|
|
font-size: $font-size-4;
|
|
color: $text-color;
|
|
|
|
/* #endif */
|
|
|
|
|
|
&__loading-icon {
|
|
margin-bottom: $loadingpage-icon-margin-bottom;
|
|
|
|
&__img {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
}
|
|
|
|
&__text {
|
|
font-size: $font-size-4;
|
|
color: $text-color;
|
|
}
|
|
}
|
|
} |