ChatPageHeader.style.js 450 B

1234567891011121314151617181920
  1. import styled from "styled-components";
  2. export const ChatPageHeaderWrap = styled.div`
  3. box-sizing: border-box;
  4. position: relative;
  5. z-index: 2;
  6. width: 100%;
  7. height: 54px;
  8. background-color: #fff;
  9. border-bottom: 1px solid #e9e9e9;
  10. display: flex;
  11. justify-content: space-between;
  12. padding: 8px 12px;
  13. `;
  14. export const ChatMembersAmount = styled.div`
  15. position: relative;
  16. color: #a1a1a1;
  17. font-size: 13px;
  18. `;