-
Notifications
You must be signed in to change notification settings - Fork 3
리스트 페이지 API 403 오류 해결 #91
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -31,7 +31,7 @@ | |||||
| flex-shrink: 0; | ||||||
| } | ||||||
| /* Tablet styles */ | ||||||
| @media (min-width: 768px) and (max-width: 1279px) { | ||||||
| @media (min-width: 768px) and (max-width: 1200px) { | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 미디어 쿼리
Suggested change
|
||||||
| .page { | ||||||
| flex-direction: column; | ||||||
| } | ||||||
|
|
@@ -71,7 +71,7 @@ | |||||
| } | ||||||
|
|
||||||
| /* Tablet specific rules for kanbanResponsiveContainer */ | ||||||
| @media (min-width: 768px) and (max-width: 1279px) { | ||||||
| @media (min-width: 768px) and (max-width: 1200px) { | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 미디어 쿼리
Suggested change
|
||||||
| .kanbanResponsiveContainer { | ||||||
| flex-wrap: nowrap; /* Prevent wrapping on tablet */ | ||||||
| justify-content: space-between; /* Distribute items evenly */ | ||||||
|
|
||||||
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.
미디어 쿼리
max-width값을1199px로 수정하는 것을 제안합니다. 다른 CSS 파일에서는 데스크탑 브레이크포인트를1200px부터 시작(min-width: 1200px)하고, 태블릿은1199px까지(max-width: 1199px)로 정의하고 있습니다.max-width: 1200px를 사용하면1200px너비에서 데스크탑과 태블릿 스타일이 중복 적용되어 예기치 않은 레이아웃 문제가 발생할 수 있습니다. 일관성을 유지하고 잠재적인 스타일 충돌을 방지하기 위해1199px로 변경하는 것이 좋습니다.