ChatInfoDrawerMediaList.style.js 366 B

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