ChatInfoDrawer.style.js 444 B

12345678910111213141516171819202122
  1. import styled from "styled-components";
  2. export const ChatInfoDrawerHeader = styled.div`
  3. width: 100%;
  4. display: flex;
  5. justify-content: space-between;
  6. align-items: center;
  7. padding: 10px 10px;
  8. `;
  9. export const LeaveChatButton = styled.div`
  10. display: flex;
  11. align-items: center;
  12. font-size: 18px;
  13. font-weight: 500;
  14. height: 40px;
  15. cursor: pointer;
  16. &:hover{
  17. background-color: #f3f3f3;
  18. }
  19. `;