SearchChatModal.style.js 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import styled from 'styled-components'
  2. export const SearchChatWrap = styled.div`
  3. width: 100%;
  4. // height: 560px;
  5. `;
  6. export const SearchChatHeader = styled.div`
  7. width: 100%;
  8. padding: 20px 20px 10px;
  9. font-weight: 500;
  10. font-size: 18px;
  11. `;
  12. export const SearchChatFooter = styled.div`
  13. display: flex;
  14. padding: 10px 15px;
  15. justify-content: right;
  16. align-items: center;
  17. `;
  18. export const SearchChatInputWrapper = styled.div`
  19. width: 100%;
  20. display: flex;
  21. padding: 0px 20px 5px;
  22. `;
  23. export const SearchChatInput = styled.input`
  24. width: 100%;
  25. border: none;
  26. background-color: #fff;
  27. padding: 0 10px;
  28. box-sizing: border-box;
  29. height: 32px;
  30. font-size: 14px;
  31. outline: none !important;
  32. &::placeholder{
  33. color: #9b9b9b;
  34. letter-spacing: 0.5px;
  35. font-weight: 300;
  36. }
  37. `;
  38. export const SearchChatListWrapper = styled.ul`
  39. margin: 0;
  40. padding: 0;
  41. list-style-type: none;
  42. height: 400px;
  43. overflow: hidden;
  44. `;