-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix] - 메인페이지 modal css 깨짐 및 modal, drawer 애니메이션 적용 안되던 이슈 수정 (#567)
* style(SingleSelectionTagModalBottomSheet): 바텀 시트 css 깨지던것 수정 * feat(useUnmountAnimation): 컴포넌트 언마운트시 애니메이션 재생되는 훅 구현 * feat(MainPage): 정렬,필터 모달에 useUnmountAnimation 훅 사용 * feat(Drawer): Drawer에 useUnmountAnimation 훅 사용 * refactor(useUnmountAnimation): shouldRender를 isRendered로 수정 * fix: 프로필 사진 수정, 여행기 및 여행계획 수정 bottomSheet에 useUnmountAnimation 훅 사용 * fix(EditRegisterModalBottomSheet): 애니메이션 실종 이슈 수정 * style(FloatingButton): animation 추가 및 useUnmountAnimation 훅 사용 * style(Icon): 세로 가운데 정렬을 위한 wrapper 추가 * feat(animation): animation 토큰 추가 * refactor: Drawer,FloatingButton에서 animation 토큰 사용 * chore: 필요없는 주석 삭제 * fix(route): 앞에 / 추가 * fix(Drawer): overlay 위치 수정 - 페이지 이동할 때 마다 ovelay가 보였다가 안보이는 이슈가 있어서 수정
- Loading branch information
Showing
17 changed files
with
264 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
export const Wrapper = styled.div<{ size: string }>` | ||
display: flex; | ||
align-items: center; | ||
height: ${({ size }) => size}px; | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.