From 747850229a3d5485983e2b278c40ac3547b764aa Mon Sep 17 00:00:00 2001 From: Rosie Seok Date: Sun, 29 Jun 2025 13:40:13 +0900 Subject: [PATCH 1/2] =?UTF-8?q?style:=20=ED=91=B8=ED=84=B0=20=EB=B0=98?= =?UTF-8?q?=EC=9D=91=ED=98=95=20breakpoints=20sm=EC=97=90=EC=84=9C=201200?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95=ED=95=98=EC=97=AC=20?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20=EA=B9=A8=EC=A7=90=20?= =?UTF-8?q?=ED=98=84=EC=83=81=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widgets/Footer/Footer.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/widgets/Footer/Footer.tsx b/src/widgets/Footer/Footer.tsx index 1f3fec5..02ab924 100644 --- a/src/widgets/Footer/Footer.tsx +++ b/src/widgets/Footer/Footer.tsx @@ -144,7 +144,7 @@ const FooterContent = styled(Box)(({ theme }) => ({ alignItems: "flex-start", justifyContent: "space-between", gap: theme.spacing(2), - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { flexDirection: "column", alignItems: "flex-start", gap: theme.spacing(1), @@ -157,7 +157,7 @@ const LogoSection = styled(Box)(({ theme }) => ({ justifyContent: "space-between", gap: 8, height: "100%", - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { alignItems: "center", width: "100%", flexDirection: "column", @@ -169,7 +169,7 @@ const InfoSection = styled(Box)(({ theme }) => ({ minWidth: 200, marginLeft: 16, marginTop: 52, - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { marginTop: 0, marginLeft: 0, textAlign: "center", @@ -181,7 +181,7 @@ const NavSection = styled(Box)(({ theme }) => ({ alignItems: "center", gap: 16, marginTop: 16, - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { width: "100%", justifyContent: "center", }, @@ -191,7 +191,7 @@ const DevelopersSection = styled(Box)(({ theme }) => ({ display: "flex", alignItems: "center", gap: 16, - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { width: "100%", justifyContent: "center", }, From 8dd1075e58e9bb56e783a3ab647a61b8f87ddd71 Mon Sep 17 00:00:00 2001 From: Rosie Seok Date: Sun, 29 Jun 2025 14:19:27 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=ED=8F=AC=EC=A7=80=EC=85=98=20?= =?UTF-8?q?=EB=B0=8F=20=EA=B2=BD=EB=A0=A5=20=EB=8D=B0=EC=9D=B4=ED=84=B0?= =?UTF-8?q?=EB=A5=BC=20=ED=95=9C=EA=B8=80=EB=A1=9C=20=EC=A0=84=EC=86=A1?= =?UTF-8?q?=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ui/project-insert/ProjectPositionsCard.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx b/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx index 047909b..c7c9b29 100644 --- a/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx +++ b/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx @@ -26,17 +26,17 @@ interface ProjectPositionsCardProps { } const USER_ROLES = [ - { value: "frontend", label: "프론트엔드 개발자" }, - { value: "backend", label: "백엔드 개발자" }, - { value: "fullstack", label: "풀스택 개발자" }, - { value: "designer", label: "디자이너" }, - { value: "pm", label: "프로덕트 매니저" }, + { value: "프론트엔드 개발자", label: "프론트엔드 개발자" }, + { value: "백엔드 개발자", label: "백엔드 개발자" }, + { value: "풀스택 개발자", label: "풀스택 개발자" }, + { value: "디자이너", label: "디자이너" }, + { value: "프로덕트 매니저", label: "프로덕트 매니저" }, ]; const EXPERIENCE_OPTIONS = [ - { value: "junior", label: "주니어 (3년 이하)" }, - { value: "mid", label: "미들 (3년 이상 10년 이하)" }, - { value: "senior", label: "시니어 (10년 이상)" }, + { value: "주니어 (3년 이하)", label: "주니어 (3년 이하)" }, + { value: "미들 (3년 이상 10년 이하)", label: "미들 (3년 이상 10년 이하)" }, + { value: "시니어 (10년 이상)", label: "시니어 (10년 이상)" }, ]; const ProjectPositionsCard = ({