SearchChatListItem.style.js 490 B

1234567891011121314151617181920212223
  1. import { Link } from 'react-router-dom';
  2. import styled from 'styled-components'
  3. export const SearchChatItemWrapper = styled.li`
  4. width: 100%;
  5. height: 60px;
  6. &:hover{
  7. background-color: #f3f3f3;
  8. }
  9. `;
  10. export const SearchChatItemName = styled.div`
  11. color: #000;
  12. font-weight: 500;
  13. `;
  14. export const SearchChatItemLink = styled(Link)`
  15. display: flex;
  16. justify-content: left;
  17. align-items: center;
  18. text-decoration: none;
  19. padding: 8px 13px 8px 8px;
  20. `;