index.scss 933 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import "../../../../themes/page.scss";
  2. /* module/chats/pages/index/index.wxss */
  3. .page-scroll__container {
  4. box-sizing: border-box;
  5. overflow-y: auto;
  6. }
  7. .chats-container {
  8. position: relative;
  9. height: 100vh;
  10. background-image: url("/assets/bg/bg_dialog@2x.png");
  11. background-size: 100% 100%;
  12. background-repeat: no-repeat;
  13. background-color: #f5f6f7;
  14. }
  15. .tabbar-container {
  16. position: fixed;
  17. left: 0;
  18. right: 0;
  19. bottom: 0;
  20. z-index: 100;
  21. background-color: #fff;
  22. padding-bottom: env(safe-area-inset-bottom);
  23. box-shadow: 0 -2rpx 6rpx rgba(0, 0, 0, 0.1);
  24. }
  25. .chat {
  26. padding: 24px 12px;
  27. }
  28. .system-wrapper {
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. margin: 6px 0;
  33. .title {
  34. padding: 4px 12px;
  35. font-size: 12px;
  36. color: #999999;
  37. // background-color: #1B4F34;
  38. border-radius: 5px;
  39. }
  40. .date {
  41. font-size: 12px;
  42. color: #999;
  43. margin-bottom: 6px;
  44. }
  45. }