Skip to content

Commit

Permalink
Merge pull request #77 from depromeet/fix/35/retrospect-create
Browse files Browse the repository at this point in the history
회고 생성 날짜, 모달 버튼 배경 관련 버그 수정
  • Loading branch information
leeminhee119 authored Aug 6, 2024
2 parents 03c7ada + 61a9f13 commit b2af919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/component/common/Modal/FullModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export function FullModal({ children }: FullModalProps) {
height: 100dvh;
width: 48rem;
overflow-y: auto;
background-color: #fff;
--parent-bg-color: #fff;
background-color: var(--parent-bg-color);
`}
>
{children}
Expand Down
4 changes: 2 additions & 2 deletions src/component/retrospectCreate/steps/DueDate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ export function DueDate() {
cursor: pointer;
`}
>
{!(selectedDate && selectedTime) ? (
{!selectedDate ? (
<Typography color="lightGrey5" variant="B1">
회고 마감일을 선택해주세요
</Typography>
) : (
<Typography color="darkGrayText" variant="B1">
{`${formatDateToString(selectedDate as Date, ".")} ${selectedTime}`}
{`${formatDateToString(selectedDate as Date, ".")} ${selectedTime ?? ""}`}
</Typography>
)}
{/**FIXME - design token */}
Expand Down

0 comments on commit b2af919

Please sign in to comment.