modo-mobile
Version:
A mobile UI toolkit, based on React
35 lines (34 loc) • 919 B
CSS
.m-activity-indicator {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.m-activity-indicator-vertical {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.m-activity-indicator-vertical .m-activity-indicator-text {
color: rgba(0, 0, 0, 0.45);
margin: 8px 0 0;
}
.m-activity-indicator-text {
color: rgba(0, 0, 0, 0.45);
margin: 0 0 0 8px;
}