| 1234567891011121314151617181920212223242526272829303132333435 |
- @import '../../../../themes/page.scss';
- @import '../../../../themes/draggable-sheet.scss';
- @import "../../report-common.scss";
- @import "../../../../themes/card.scss";
- /* module/health/pages/home/home.scss */
- .health-container{
- background-image: url("/assets/bg/bg_records.png");
- background-repeat: no-repeat;
- width: 100%;
- height: 100%; /* Ensure this path is correct */
- background-size: cover; /* or contain, depending on your needs */
- background-position: top;
- background-color: #F5F6F7;
-
- }
- .page-scroll__container{
-
- padding-bottom: calc(100rpx + env(safe-area-inset-bottom)) !important;
- }
- .card-body.report-wrapper {
- display: flex;
- flex-direction: row;
- align-items: center;
- .content-wrapper {
- flex: auto;
- }
- .image-wrapper {
- flex: none;
- width: 128px;
- height: 128px;
- margin-left: 8px;
- }
- }
|