home.scss 843 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import '../../../../themes/page.scss';
  2. @import '../../../../themes/draggable-sheet.scss';
  3. @import "../../report-common.scss";
  4. @import "../../../../themes/card.scss";
  5. /* module/health/pages/home/home.scss */
  6. .health-container{
  7. background-image: url("/assets/bg/bg_records.png");
  8. background-repeat: no-repeat;
  9. width: 100%;
  10. height: 100%; /* Ensure this path is correct */
  11. background-size: cover; /* or contain, depending on your needs */
  12. background-position: top;
  13. background-color: #F5F6F7;
  14. }
  15. .page-scroll__container{
  16. padding-bottom: calc(100rpx + env(safe-area-inset-bottom)) !important;
  17. }
  18. .card-body.report-wrapper {
  19. display: flex;
  20. flex-direction: row;
  21. align-items: center;
  22. .content-wrapper {
  23. flex: auto;
  24. }
  25. .image-wrapper {
  26. flex: none;
  27. width: 128px;
  28. height: 128px;
  29. margin-left: 8px;
  30. }
  31. }