| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- @import "../../../../themes/page.scss";
- /* module/chats/pages/index/index.wxss */
- .page-scroll__container {
- box-sizing: border-box;
- overflow-y: auto;
- }
- .chats-container {
- position: relative;
- height: 100vh;
- background-image: url("/assets/bg/bg_dialog@2x.png");
- background-size: 100% 100%;
- background-repeat: no-repeat;
- background-color: #f5f6f7;
- }
- .tabbar-container {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 100;
- background-color: #fff;
- padding-bottom: env(safe-area-inset-bottom);
- box-shadow: 0 -2rpx 6rpx rgba(0, 0, 0, 0.1);
- }
- .chat {
- padding: 24px 12px;
- }
- .system-wrapper {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 6px 0;
- .title {
- padding: 4px 12px;
- font-size: 12px;
- color: #999999;
- // background-color: #1B4F34;
- border-radius: 5px;
- }
- .date {
- font-size: 12px;
- color: #999;
- margin-bottom: 6px;
- }
- }
|