UserMenu.style.js 499 B

1234567891011121314151617181920212223242526
  1. import { ListItem } from "@mui/material";
  2. import styled from "styled-components";
  3. export const UserMenuHeader = styled.div`
  4. padding: 25px;
  5. `;
  6. export const UserMenuTitle = styled.h3`
  7. margin: 0;
  8. margin-top: 15px;
  9. font-weight: 500;
  10. `;
  11. export const StyledSpan = styled.span`
  12. margin-left: 16px;
  13. font-weight: 500;
  14. `;
  15. export const ListItemWrap = styled(ListItem)`
  16. padding: 0;
  17. height: 40px;
  18. padding-left: 25px;
  19. &:hover{
  20. background-color: #f3f3f3;
  21. }
  22. `;