这版是公共号授权版
This commit is contained in:
@@ -5,6 +5,31 @@ page {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* loading 遮罩:未登录时显示,防止页面内容一闪 */
|
||||
.fullscreen-loading {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #f9f9f9;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 9999;
|
||||
}
|
||||
.fullscreen-loading .loading-spinner {
|
||||
width: 48rpx;
|
||||
height: 48rpx;
|
||||
border: 4rpx solid #e0e0e0;
|
||||
border-top-color: #07c160;
|
||||
border-radius: 50%;
|
||||
animation: fullscreen-spin 0.8s linear infinite;
|
||||
}
|
||||
@keyframes fullscreen-spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
.scrollarea {
|
||||
height: 90vh;
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user