| 123456789101112131415161718192021222324252627282930313233 |
- /* module/health/pages/record-index/record-index.wxss */
- page {
- background-color: white;
- }
- .chart {
- margin: 12px 0;
- }
- .chart-container {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #fff;
- border-radius: 12rpx;
- margin: 20rpx 0;
- }
- .chart {
- width: 100%;
- height: 100%;
- }
- .loading, .error {
- padding: 40rpx;
- text-align: center;
- color: #666;
- font-size: 28rpx;
- }
- .error {
- color: #ff4d4f;
- }
|