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.

SidebarProfile.styled.js 721B

123456789101112131415161718192021222324252627282930
  1. import { Box, Typography } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../../themes";
  4. export const SidebarProfileContainer = styled(Box)`
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. padding: 0;
  9. `;
  10. export const SidebarProfileImage = styled.img`
  11. width: 108px;
  12. height: 108px;
  13. border-radius: 100%;
  14. `;
  15. export const SidebarProfileName = styled(Typography)`
  16. font-family: "DM Sans";
  17. font-size: 16px;
  18. font-weight: 700;
  19. margin-top: 19px;
  20. color: ${selectedTheme.colors.primaryPurple};
  21. `;
  22. export const SidebarProfileRole = styled(Typography)`
  23. font-family: "DM Sans";
  24. font-size: 12px;
  25. color: ${selectedTheme.colors.primaryPurple};
  26. `;