message-system.scss 410 B

12345678910111213141516171819202122232425
  1. /* module/chats/components/message-system/message-system.wxss */
  2. .system-wrapper {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. margin: 6px 0;
  7. .title {
  8. padding: 4px 12px;
  9. font-size: 12px;
  10. color: white;
  11. background-color: #1D6FF6;
  12. border-radius: 5px;
  13. }
  14. .date {
  15. font-size: 12px;
  16. color: #999;
  17. margin-bottom: 6px;
  18. }
  19. }
  20. button {
  21. line-height: 18px;
  22. }