Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ReviewerProfile.styled.js 722B

1234567891011121314151617181920212223242526272829
  1. import { Box, ListItem, Typography } from "@mui/material"
  2. import styled from "styled-components"
  3. import selectedTheme from "../../../../themes"
  4. export const ProfileImage = styled.img`
  5. width: 54px;
  6. height: 54px;
  7. border-radius: 100%;
  8. cursor: pointer;
  9. `
  10. export const ProfileImageContainer = styled(Box)`
  11. width: 54px;
  12. height: 54px;
  13. border-radius: 100%;
  14. margin-right: 14px;
  15. `
  16. export const ProfileName = styled(Typography)`
  17. font-weight: 600;
  18. font-size: 16px;
  19. position: relative;
  20. top: 12px;
  21. cursor: pointer;
  22. font-family: ${selectedTheme.fonts.textFont};
  23. color: ${selectedTheme.colors.primaryPurple};
  24. `
  25. export const ProfileContainer = styled(ListItem)`
  26. align-items: flex-start;
  27. padding: 0;
  28. `