Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 0 additions & 65 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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],
};
Expand Down
4 changes: 2 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;
}

Expand Down