43 lines
664 B
SCSS
43 lines
664 B
SCSS
.subscriptions-container {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #f9f9f9;
|
|
overflow: hidden;
|
|
|
|
.header-icon-box {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 56rpx;
|
|
height: 56rpx;
|
|
|
|
.iconfont {
|
|
font-size: 32rpx;
|
|
color: #666;
|
|
}
|
|
}
|
|
|
|
.page-content {
|
|
flex: 1;
|
|
height: 0;
|
|
}
|
|
|
|
.page-scroll-content {
|
|
padding: 20rpx 24rpx;
|
|
padding-bottom: 40rpx;
|
|
}
|
|
|
|
.loading-state {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 200rpx 0;
|
|
|
|
.loading-text {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
}
|
|
}
|
|
}
|