-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ScheduleDrawer 디자인 수정 (#295)
* refactor: ScheduleDrawer에 Puller 적용 * refactor: ScheduleDrawer 템플릿 선택기 컴포넌트 위치 조정 * refactor: ScheduleDrawer 높이 조정 * refactor: ScheduleDrawer 불필요한 참조 제거 * refactor: ScheduleDrawer 반복 옵션 설정 페이지 디자인 수정, 저장 로직 수정 * refactor: TopNavigationBar 위치 옵션 sticky 로 설정하여 스크롤 시 사라지지 않도록 조정
- Loading branch information
1 parent
47f3f91
commit d6ae66c
Showing
26 changed files
with
457 additions
and
246 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
29 changes: 29 additions & 0 deletions
29
src/components/ScheduleDrawer/layouts/ScheduleDrawerFooter/ScheduleDrawerFooter.style.ts
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,29 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
export const FooterContainer = styled.div` | ||
//background-color: transparent; | ||
position: fixed; | ||
bottom: 0; | ||
z-index: 1300; | ||
`; | ||
|
||
export const AutoSaveContainer = styled.div` | ||
display: flex; | ||
padding: 4px 20px; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 4px; | ||
align-self: stretch; | ||
opacity: 1; | ||
color: #8c919c; | ||
font-size: 14px; | ||
font-weight: 400; | ||
line-height: 22px; /* 157.143% */ | ||
letter-spacing: 0.4px; | ||
`; | ||
|
||
export const ActionContainer = styled.div` | ||
background-color: white; | ||
padding-bottom: 28px; | ||
`; |
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
26 changes: 0 additions & 26 deletions
26
src/components/ScheduleDrawer/layouts/ScheduleDrawerHeader.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.