| 123456789101112131415161718192021222324252627282930313233 |
- import styled from "styled-components";
- import { Box } from "@mui/system";
- import { Typography } from "@mui/material";
-
- export const ProfileHeader = styled(Box)`
- margin-top: 60px;
-
- @media screen and (max-width: 600px) {
- width: 100%;
- position: absolute;
- top: 25px;
- }
- `;
- export const ProfileHeaderIconContainer = styled(Box)`
- display: flex;
- align-items: center;
-
- @media screen and (max-width: 600px) {
- margin-bottom: 18px;
- svg {
- width: 14px;
- }
- }
- `;
- export const ProfileHeaderText = styled(Typography)`
- font-family: "Open Sans";
- font-size: 16px;
- margin-left: 7.2px;
-
- @media screen and (max-width: 600px) {
- font-size: 12px;
- }
- `;
|