MemberList.style.js 382 B

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