-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FE] '약속 후보 날짜 선택'과 '약속 시간 범위 선택' 사이에 간격을 설정 (#397)
* rename: CreateMeetingPage 디렉터리 내부 구조 변경 MeetingDateTime, MeetingHostInfo, MeetingName 컴포넌트를 components 디렉터리 내부로 이동 * design: '약속 후보 날짜 선택'과 '약속 시간 범위 선택' 사이에 간격을 설정 * design: 요소가 넘쳐서 안 보이는 경우 스크롤 가능하게 설정 * fix: logoSunglass svg 패턴 정의
- Loading branch information
1 parent
dd6740f
commit 1ea14a4
Showing
6 changed files
with
38 additions
and
14 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions
16
frontend/src/pages/CreateMeetingPage/components/MeetingDateTime/MeetingDateTime.styles.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,16 @@ | ||
import { css } from '@emotion/react'; | ||
|
||
export const s_container = css` | ||
overflow: scroll; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2.4rem; | ||
height: calc(100% - 6rem); | ||
`; | ||
|
||
export const s_dateCandidateSelector = css` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1.2rem; | ||
`; |
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
File renamed without changes.
File renamed without changes.
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