MemberList.style.js 427 B

1234567891011121314151617181920212223
  1. import styled from "styled-components";
  2. export const MemberListWrapper = styled.ul`
  3. max-height: 300px;
  4. margin: 0;
  5. padding: 0;
  6. list-style-type: none;
  7. overflow: hidden;
  8. `;
  9. export const MemberItem = styled.li`
  10. display: flex;
  11. justify-content: left;
  12. align-items: center;
  13. padding: 5px 20px;
  14. &:hover{
  15. background-color: #f3f3f3;
  16. }
  17. `;
  18. export const MemberName = styled.div`
  19. `;