모바일 텍스트 잘림 및 공고 폼 UI 개선 - #150
Merged
Merged
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
현상
기기별 화면 비율과 글꼴 렌더링 차이에 따라 일부 모바일 UI가 피그마와 다르게 표시되었습니다.
g,j등 영문 하강부가 잘림09:0 / 0처럼 줄바꿈됨모집 마감문구의 폰트와 색상이 디자인과 다름원인
ms, 컨테이너 높이와 lineHeight에는 세로 기반vs를 혼용하고 있었습니다.TextInput에 큰 세로 패딩과 고정 높이가 함께 적용됐고, 명시적인 폰트 및 lineHeight 설정이 없었습니다.[object Object]key를 생성했습니다.수정 결과
텍스트 잘림 개선
height를minHeight로 변경했습니다.ms기준으로 통일했습니다.단일 행 입력창 개선
textInputMediumtypography를 공통 정의했습니다.공고 폼 개선
모집 마감문구를 Semibold 20px 및 보라색으로 변경했습니다.기타
keyword.id로 변경해 중복 key 경고를 제거했습니다.스크린샷 (선택)
체크