You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MyProfile.styled.js 811B

12345678910111213141516171819202122232425262728293031323334
  1. import { TextField, Avatar } from "@mui/material";
  2. import styled from "styled-components";
  3. import PIB from '@mui/icons-material/AdminPanelSettingsOutlined';
  4. import {ReactComponent as Logout} from "../../../assets/images/svg/log-out.svg";
  5. export const ProfileImgPIB = styled(PIB)`
  6. width: 1rem;
  7. height: 1rem;
  8. margin-right: .36rem;
  9. `
  10. export const ProfileAvatar = styled(Avatar)`
  11. width: 63px;
  12. height: 63px;
  13. margin-right: 1rem;
  14. `
  15. export const SearchInput = styled(TextField)`
  16. margin-left: 3.8rem;
  17. background-color: #F4F4F4;
  18. width: 45%;
  19. max-width: 100%;
  20. @media (max-width: 1100px) {
  21. width: 36%;
  22. }
  23. @media (max-width: 900px) {
  24. width: 54%;
  25. }
  26. @media (max-width: 600px) {
  27. width: 36%;
  28. }
  29. `
  30. export const LogoutIcon = styled(Logout)`
  31. `