+
(
명}
required
{...field}
@@ -592,19 +592,18 @@ const SNeedMentorFieldWrapper = styled('div', {
});
const STargetFieldWrapper = styled('div', {
display: 'flex',
- alignItems: 'center',
- gap: '10px',
+ flexDirection: 'column',
+ gap: '$16',
marginBottom: '16px',
- height: '52px',
- '@tablet': {
- height: '48px',
- },
+});
- '@media(max-width: 525px)': {
- flexDirection: 'column',
- alignItems: 'flex-start',
+const STargetChipContainer = styled('div', {
+ display: 'flex',
+ gap: '$10',
+ flexWrap: 'wrap',
- marginBottom: '52px',
+ '@media(max-width: 430px)': {
+ maxWidth: '320px',
},
});
@@ -675,8 +674,8 @@ const SSectionCountBox = styled('div', {
});
const SMemberCountWrapper = styled('div', {
- width: '94px',
- height: '52px',
+ width: '119px',
+ height: '48px',
});
const SFormCheckBox = styled('div', {
diff --git a/src/components/form/TableOfContents/index.tsx b/src/components/form/TableOfContents/index.tsx
index 9113c510..b16f1249 100644
--- a/src/components/form/TableOfContents/index.tsx
+++ b/src/components/form/TableOfContents/index.tsx
@@ -16,11 +16,8 @@ function TableOfContents({ label }: TableOfContentsProps) {
const isTitleValid = form.title && !errors.title;
const isCategoryValid = form.category?.value && !errors.category;
- // console.log('카테고리', '' + form.category?.value, isCategoryValid);
const isImageValid = form.files && form.files.length > 0;
- console.log('이미지', isImageValid);
const isDescriptionValid = form.detail && form.detail.desc && !errors.detail;
- console.log('모임소개', isImageValid);
const isApplicationDateValid = form.startDate && form.endDate && !errors.startDate && !errors.endDate;
const isTargetValid =
form.detail &&
diff --git a/src/components/form/TextInput/index.tsx b/src/components/form/TextInput/index.tsx
index e0b4cb29..09198d5d 100644
--- a/src/components/form/TextInput/index.tsx
+++ b/src/components/form/TextInput/index.tsx
@@ -49,7 +49,7 @@ const SInputWrapper = styled('div', {
});
const SInput = styled('input', {
width: '100%',
- padding: '18px 20px',
+ padding: '11px 16px',
display: 'flex',
alignItems: 'center',
fontAg: '16_medium_100',
diff --git a/src/data/options.ts b/src/data/options.ts
index 552110b3..11939e43 100644
--- a/src/data/options.ts
+++ b/src/data/options.ts
@@ -18,12 +18,11 @@ export const generationOptions = [
];
export const parts = [
- { label: '대상 파트', value: null },
- { label: '전체', value: 'all', order: 1 },
+ { label: '전체파트', value: 'all', order: 1 },
{ label: '기획', value: 'PM', order: 2 },
{ label: '디자인', value: 'DESIGN', order: 3 },
- { label: '웹', value: 'WEB', order: 4 },
- { label: '안드로이드', value: 'ANDROID', order: 5 },
- { label: 'iOS', value: 'IOS', order: 6 },
{ label: '서버', value: 'SERVER', order: 7 },
+ { label: 'iOS', value: 'IOS', order: 6 },
+ { label: 'Android', value: 'ANDROID', order: 5 },
+ { label: '웹', value: 'WEB', order: 4 },
];