ChatPageHeader.style.js 531 B

12345678910111213141516171819202122
  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-left: 1px solid #e9e9e9;
  10. border-bottom: 1px solid #e9e9e9;
  11. display: flex;
  12. justify-content: space-between;
  13. padding: 8px 12px;
  14. // box-shadow: 0 0 10px -1px #BDBDBD;
  15. `;
  16. export const ChatMembersAmount = styled.div`
  17. position: relative;
  18. color: #a1a1a1;
  19. font-size: 13px;
  20. `;