diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 96332a81..a4b78c08 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -44,71 +44,6 @@ const preview: Preview = { date: /Date$/i, }, }, - viewport: { - defaultViewport: "desktop", - viewports: { - // 모바일 - 아이폰 - iphone12: { - name: "iPhone 12", - styles: { - width: "390px", - height: "844px", - }, - }, - iphone12promax: { - name: "iPhone 12 Pro Max", - styles: { - width: "428px", - height: "926px", - }, - }, - // 모바일 - 갤럭시 - galaxys8: { - name: "Galaxy S8", - styles: { - width: "360px", - height: "740px", - }, - }, - galaxys20: { - name: "Galaxy S20", - styles: { - width: "412px", - height: "915px", - }, - }, - // 태블릿 - 아이패드 - ipadMini: { - name: "iPad Mini", - styles: { - width: "768px", - height: "1024px", - }, - }, - ipadAir: { - name: "iPad Air", - styles: { - width: "820px", - height: "1180px", - }, - }, - ipadPro: { - name: "iPad Pro", - styles: { - width: "1024px", - height: "1366px", - }, - }, - // 데스크톱 - desktop: { - name: "Desktop", - styles: { - width: "1440px", - height: "1024px", - }, - }, - }, - }, }, decorators: [withProviders], }; diff --git a/src/app/(pages)/(workform)/work/[formId]/components/FormActions.tsx b/src/app/(pages)/(workform)/work/[formId]/components/FormActions.tsx index 22f56986..dd530cc4 100644 --- a/src/app/(pages)/(workform)/work/[formId]/components/FormActions.tsx +++ b/src/app/(pages)/(workform)/work/[formId]/components/FormActions.tsx @@ -79,8 +79,8 @@ export default function FormActions({ formId, albaFormDetailData }: FormActionsP // 비회원일 때 if (!user) { return ( -
-
+
+
}> 지원하기 diff --git a/src/app/components/modal/modals/apply/MyApplicationModal.tsx b/src/app/components/modal/modals/apply/MyApplicationModal.tsx index 68a99260..46368824 100644 --- a/src/app/components/modal/modals/apply/MyApplicationModal.tsx +++ b/src/app/components/modal/modals/apply/MyApplicationModal.tsx @@ -94,7 +94,7 @@ const ApplicationContent = ({ {resumeName && ( <> - {user && } + {user.user !== null && } )} diff --git a/src/app/globals.css b/src/app/globals.css index c8f0e39b..e829b0ed 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -200,7 +200,7 @@ input[type="checkbox"]:disabled { .react-datepicker__year-text--in-selecting-range, .react-datepicker__year-text--in-range, .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--outside-month) { - @apply bg-primary-orange-50 text-black-400 opacity-80 !important; + @apply bg-[#fff7eb] text-black-400 opacity-80 !important; } /* 범위의 첫 날짜에 대한 스타일 */ .react-datepicker__day--range-start.react-datepicker__day--in-range { @@ -210,7 +210,7 @@ input[type="checkbox"]:disabled { /* 범위의 마지막 날짜에 대한 스타일 */ .react-datepicker__day--range-end.react-datepicker__day--in-range { - @apply bg-primary-orange-50 !important; + @apply bg-[#fff7eb] !important; background: linear-gradient(to right, #fff7eb 50%, transparent 50%) !important; }