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

MyProfile.styled.js 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import { TextField, Avatar, Box } from "@mui/material";
  2. import styled from "styled-components";
  3. import PIB from "@mui/icons-material/AdminPanelSettingsOutlined";
  4. import { ReactComponent as Dollar } from "../../../assets/images/svg/dollar.svg";
  5. import selectedTheme from "../../../themes";
  6. export const ProfileImgPIB = styled(PIB)`
  7. width: 1rem;
  8. height: 1rem;
  9. margin-right: 0.36rem;
  10. `;
  11. export const ProfileAvatar = styled(Avatar)`
  12. width: 63px;
  13. height: 63px;
  14. margin-right: 1rem;
  15. `;
  16. export const SearchInput = styled(TextField)`
  17. margin-left: 3.8rem;
  18. background-color: #f4f4f4;
  19. width: 45%;
  20. max-width: 100%;
  21. @media (max-width: 1100px) {
  22. width: 36%;
  23. }
  24. @media (max-width: 900px) {
  25. width: 54%;
  26. }
  27. @media (max-width: 600px) {
  28. width: 36%;
  29. }
  30. `;
  31. export const GrayButton = styled(Box)`
  32. text-align: right;
  33. & button {
  34. margin-bottom: 5.5px;
  35. margin-top: 5.5px;
  36. margin-right: 0;
  37. color: ${selectedTheme.colors.primaryPurple};
  38. }
  39. `;
  40. export const GrayButtonsContainer = styled(Box)`
  41. margin-bottom: 16px;
  42. margin-left: 16px;
  43. margin-right: 16px;
  44. padding-top: 16px;
  45. border-top: 1px solid rgba(77, 77, 77, 0.12);
  46. `;
  47. export const DollarIcon = styled(Dollar)`
  48. position: relative;
  49. left: -7px;
  50. margin-left: 10px;
  51. & path {
  52. stroke: ${selectedTheme.colors.borderNormal};
  53. fill: ${selectedTheme.colors.borderNormal};
  54. }
  55. `;