Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ProfileMini.styled.js 683B

123456789101112131415161718192021222324252627282930313233
  1. import styled from "styled-components";
  2. import { Box } from "@mui/system";
  3. import { Typography } from "@mui/material";
  4. export const ProfileHeader = styled(Box)`
  5. margin-top: 60px;
  6. @media screen and (max-width: 600px) {
  7. width: 100%;
  8. position: absolute;
  9. top: 25px;
  10. }
  11. `;
  12. export const ProfileHeaderIconContainer = styled(Box)`
  13. display: flex;
  14. align-items: center;
  15. @media screen and (max-width: 600px) {
  16. margin-bottom: 18px;
  17. svg {
  18. width: 14px;
  19. }
  20. }
  21. `;
  22. export const ProfileHeaderText = styled(Typography)`
  23. font-family: "Open Sans";
  24. font-size: 16px;
  25. margin-left: 7.2px;
  26. @media screen and (max-width: 600px) {
  27. font-size: 12px;
  28. }
  29. `;