SearchUserForChat.style.js 530 B

1234567891011121314151617181920212223242526
  1. import styled from "styled-components";
  2. export const SearchUserForChatWrap = styled.div`
  3. width: 100%;
  4. // height: 560px;
  5. `;
  6. export const SearchUserHeader = styled.div`
  7. width: 100%;
  8. padding: 20px 20px 10px;
  9. font-weight: 500;
  10. font-size: 18px;
  11. span{
  12. margin-left: 12px;
  13. font-size: 16px;
  14. color: #a1a1a1;
  15. font-weight: 400;
  16. }
  17. `;
  18. export const SearchUserFooter = styled.div`
  19. display: flex;
  20. padding: 10px 15px;
  21. justify-content: right;
  22. align-items: center;
  23. `;