-
Notifications
You must be signed in to change notification settings - Fork 2
맥북 환경에서 룸 UI 스크롤 이슈 #225
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
Open
joyswim
wants to merge
5
commits into
dev
Choose a base branch
from
GRPHI-201-qa/finalResult-ui
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
맥북 환경에서 룸 UI 스크롤 이슈 #225
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
36c02e5
💄design: 대기실 버튼 사이즈 조정 및 공통 className 분리
joyswim 33a455d
💄design: 룸 UserList 크기 작게 조정
joyswim 90a0c02
🐛fix: 룸/결과 가로스크롤 이슈 해결(margin>padding) 수정
joyswim 2c286f6
💄design: UserList 크기 크게 조정
joyswim 3d3feef
🐛fix: 가로세로 스크롤 영역만큼 스크롤 이슈 overflow-hidden 적용
joyswim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
캐릭터 이미지(
<figure>
)의 너비가w-[4rem]
에서 반응형 너비(w-[3rem] 2xl:w-[3.5rem]
)로 변경되었는데, 사용자 이름 영역(div
)의 너비는w-[calc(100%-4rem)]
으로 고정되어 있습니다. 이 값은 더 이상 유효하지 않으며, 화면 크기에 따라 레이아웃이 깨질 수 있습니다.부모 요소에
flex
가 적용되어 있으므로,calc()
대신flex-1
유틸리티를 사용하여 남은 공간을 모두 차지하도록 하는 것이 더 유연하고 안정적인 방법입니다.