UserMenu.style.js 520 B

123456789101112131415161718192021222324252627
  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. cursor: pointer;
  20. &:hover{
  21. background-color: #f3f3f3;
  22. }
  23. `;