record-index.scss 474 B

123456789101112131415161718192021222324252627282930313233
  1. /* module/health/pages/record-index/record-index.wxss */
  2. page {
  3. background-color: white;
  4. }
  5. .chart {
  6. margin: 12px 0;
  7. }
  8. .chart-container {
  9. width: 100%;
  10. height: 100%;
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. background: #fff;
  15. border-radius: 12rpx;
  16. margin: 20rpx 0;
  17. }
  18. .chart {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .loading, .error {
  23. padding: 40rpx;
  24. text-align: center;
  25. color: #666;
  26. font-size: 28rpx;
  27. }
  28. .error {
  29. color: #ff4d4f;
  30. }