Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ Fix ] 모바일뷰 캘린더 하단바 안가려지게 수정 #335

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ const Background = styled.div<{ $isCalendarOpen: boolean }>`
left: 50%;
z-index: 2;

transform: translate(-50%, -50%);

width: 100%;
height: 100dvh;

background: ${({ theme }) => theme.colors.transparentBlack_65};

transform: translate(-50%, -50%);
`;

const BottomSheetWrapper = styled.div<{ $isCalendarOpen: boolean }>`
Expand All @@ -121,7 +121,8 @@ const BottomSheetWrapper = styled.div<{ $isCalendarOpen: boolean }>`
z-index: 4;

width: 100%;
height: 100vh;
height: auto;
min-height: 100dvh;
padding: 3.8rem 0 0;
border-radius: 16px 16px 0 0;

Expand Down
Loading