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

UI: #69 유저 정보 설정 페이지 UI 구현 #78

Merged
merged 19 commits into from
Aug 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
a1a0143
Feat: #69 유저 개인정보 설정 페이지 구현
Yoonyesol Aug 16, 2024
6db43d9
Refactor: #69 UserSettingPage에서 이미지, 링크 관련 코드를 컴포넌트로 분리
Yoonyesol Aug 17, 2024
a372a22
Refactor: #69 SignUpPage에서 이미지, 링크 관련 코드를 컴포넌트로 분리
Yoonyesol Aug 17, 2024
80ef5f4
Refactor: #69 이미지 전송을 위해 폼에서 이미지를 처리할 수 있도록 코드 리팩토링
Yoonyesol Aug 17, 2024
1c786b6
Refactor: #69 UserAuthenticatePage의 이메일 인증 로직을 훅으로 분리 및 인증 submit 버튼을…
Yoonyesol Aug 18, 2024
7cf194c
Refactor: #69 SignUpPage의 이메일 인증 로직, 인증 submit 버튼 분리
Yoonyesol Aug 18, 2024
d158e4f
Merge branch 'develop' of https://github.com/GU-99/grow-up-fe into fe…
Yoonyesol Aug 19, 2024
ca4aa5f
Refactor: #69 인증코드 확인 로직 분리
Yoonyesol Aug 19, 2024
b668810
Rename: #69 유저설정 페이지 관련 컴포넌트 이름 수정 및 auth-form 폴더 구조 수정
Yoonyesol Aug 19, 2024
517a68d
Feat: #69 인증버튼 라벨 props 추가
Yoonyesol Aug 19, 2024
f1c3614
Merge branch 'develop' of https://github.com/GU-99/grow-up-fe into fe…
Yoonyesol Aug 20, 2024
d9bebc1
Fix: #69 conflict 에러 해결
Yoonyesol Aug 20, 2024
6d82610
UI: #69 전체적인 코드 태그 수정 및 디자인 코드 수정, 로고 수정
Yoonyesol Aug 21, 2024
280c55b
Refactor: #69 인증번호관리 훅에서 타이머 visible 코드 삭제 및 타이머 visible 로직 수정
Yoonyesol Aug 21, 2024
87da504
UI: #69 일부 코드 태그 수정 및 디자인 코드 수정
Yoonyesol Aug 22, 2024
f8265b4
UI: #69 링크 컴포넌트 버튼 내부 아이콘 크기 조절
Yoonyesol Aug 22, 2024
22e0104
Comment: #69 타이머 만료 코드 주석 수정
Yoonyesol Aug 23, 2024
d5cb38f
Merge branch 'develop' of https://github.com/GU-99/grow-up-fe into fe…
Yoonyesol Aug 23, 2024
5d5b59b
UI: #69 label 태그 중첩 해결 및 input 태그 height 수정
Yoonyesol Aug 23, 2024
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
Prev Previous commit
Next Next commit
UI: #69 링크 컴포넌트 버튼 내부 아이콘 크기 조절
Yoonyesol committed Aug 22, 2024
commit f8265b4e2c926958a564cf0ed8035b29c94779ce
10 changes: 4 additions & 6 deletions src/components/user/auth-form/LinkContainer.tsx
Original file line number Diff line number Diff line change
@@ -59,11 +59,10 @@ export default function LinkContainer({ initialLinks }: LinkContainerProps) {
<button
type="button"
onClick={() => handleRemoveLink(linkItem)}
className="flex size-18 items-center justify-center rounded-lg bg-sub px-8"
className="flex size-18 items-center justify-center rounded-lg bg-sub"
aria-label="삭제"
>
{/* TODO: 버튼 내부 아이콘 사이즈 적절히 조절할 것 */}
<FaMinus />
<FaMinus className="size-8" />
</button>
</div>
))}
@@ -84,11 +83,10 @@ export default function LinkContainer({ initialLinks }: LinkContainerProps) {
<button
type="button"
onClick={() => handleAddLink(link)}
className="flex size-18 items-center justify-center rounded-lg bg-sub px-8"
className="flex size-18 items-center justify-center rounded-lg bg-sub"
aria-label="추가"
>
{/* TODO: 버튼 내부 아이콘 사이즈 적절히 조절할 것 */}
<FaPlus />
<FaPlus className="size-8" />
</button>
</label>
</div>