This commit is contained in:
Надежда 2024-09-02 20:53:25 +03:00
parent 5652ed2070
commit f6a49fdfcb
2 changed files with 9 additions and 4 deletions

@ -136,7 +136,7 @@ export const CropGeneral: FC<Props> = ({
alignItems: "center",
justifyContent: "center",
padding: "0 20px",
marginTop: "20px",
marginTop: isMobile ? "19px" : "20px",
}}
>
<ReactCrop
@ -192,11 +192,13 @@ export const CropGeneral: FC<Props> = ({
</Box>
<Box
sx={{
mt: "48px",
display: isMobile ? "block" : "flex",
mt: isMobile ? "20px": "48px",
display: "flex",
alignItems: "end",
justifyContent: "space-between",
padding: "0 20px",
flexDirection: isMobile ? "column": "",
}}
>
@ -213,6 +215,8 @@ export const CropGeneral: FC<Props> = ({
sx={{
display: "flex",
justifyContent: "space-between",
flexDirection: isMobile ? "column": "",
width: isMobile ? "100%": "",
gap: "24px",
}}
>
@ -244,6 +248,7 @@ export const CropGeneral: FC<Props> = ({
sx={[
styleSlider,
{
width: isMobile ? undefined : "248px",
},
]}

@ -76,7 +76,7 @@ export const CropModal: FC<CropModalProps> = ({
<Typography sx={{
// height: isMobile ? "91px" : "70px",
backgroundColor: "#F2F3F7",
padding: "25px 43px 24px 20px",
padding: isMobile ? "25px 20px 24px 20px" : "25px 43px 24px 20px",
borderRadius: "8px 8px 0px 0px",
color: "#9A9AAF",
fontSize: "18px",