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.
closes #86
로그인 페이지가 안보이던 문제를 해결하고 변경된 디자인을 반영했습니다.
로그인 페이지를 구현하면서 유용한 공용 컴포넌트를 또 만들어봤는데요,
바로
Row
와Col
입니다.지금까지 FlexBox 배치를 위해 매번 styled 객체를 생성해야 하는 불편함이 있었죠?
이제는 미리 구현된 Flex 레이아웃 컴포넌트를 사용해 이를 대체할 수 있습니다.
아래와 같이 간단하게 사용할 수 있습니다.
그리고 보시면 아시겠지만
Text
컴포넌트에noWrap:boolean
속성이 추가되었습니다.텍스트가 길어서 부모 요소 안의 가로폭을 넘어가더라도 자동으로 줄바꿈이 일어나게 하고 싶지 않은 경우 noWrap을 전달하면 됩니다.
기본값은 false입니다.