From de1697c1e72141bfc0d49425718ecfdac7f48fb1 Mon Sep 17 00:00:00 2001 From: hongggy Date: Fri, 3 Jan 2025 20:31:45 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EB=8B=AC=EB=A0=A5=20=EB=B2=94?= =?UTF-8?q?=EC=9C=84=20=EC=83=89=EC=83=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/globals.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } From 69091caed16b643bf32ab65f25124e2e15954190 Mon Sep 17 00:00:00 2001 From: hongggy Date: Thu, 6 Feb 2025 14:21:13 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EC=8A=A4=ED=86=A0=EB=A6=AC=EB=B6=81?= =?UTF-8?q?=20=EB=B7=B0=ED=8F=AC=ED=8A=B8=20=EC=84=A4=EC=A0=95=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .storybook/preview.tsx | 65 ------------------------------------------ 1 file changed, 65 deletions(-) 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], };