-
Notifications
You must be signed in to change notification settings - Fork 1
sp1 1차 QA 반영 (대시보드-UI관련) #112
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
bc9a798
feat: card layout padding right 추가
constantly-dev 0bb0caa
feat: card height 지정
constantly-dev e4303b2
fix: remind no articles state 추가
constantly-dev f53d938
feat: mybookmark no articles state 분기 추가
constantly-dev 1756200
feat: sidebar logo padding left 추가
constantly-dev 1eef7bb
feat: sideitem cursor pointer 추가
constantly-dev e458ec3
refactor: sidebar item 중복된 setState 제거
constantly-dev 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
16 changes: 16 additions & 0 deletions
16
apps/client/src/pages/myBookmark/components/noUnreadArticles/NoUnreadArticles.tsx
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| import chippiNoRemindArticles from '@assets/chippi_remindx.svg'; | ||
|
|
||
| const NoUnreadArticles = () => { | ||
| return ( | ||
| <div className="mx-auto mt-[14rem] flex flex-col items-center"> | ||
| <img src={chippiNoRemindArticles} alt="No Articles" /> | ||
|
|
||
| <p className="head2 mt-[1.6rem]">저장된 정보를 모두 꺼내봤어요!</p> | ||
| <p className="body1-m text-font-gray-3 mt-[0.8rem]"> | ||
| 치삐가 다음 도토리를 기다리고 있어요 | ||
| </p> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default NoUnreadArticles; |
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
16 changes: 16 additions & 0 deletions
16
apps/client/src/pages/remind/components/noRemindArticles/NoRemindArticles.tsx
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| import chippiNoArticles from '@assets/chippi_x.svg'; | ||
|
|
||
| const NoRemindArticles = () => { | ||
| return ( | ||
| <div className="mx-auto mt-[14rem] flex flex-col items-center"> | ||
| <img src={chippiNoArticles} alt="No Articles" /> | ||
|
|
||
| <p className="head2 mt-[1.6rem]">앗..</p> | ||
| <p className="body1-m text-font-gray-3 mt-[0.8rem]"> | ||
| 저장된 정보가 없어요 | ||
| </p> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default NoRemindArticles; |
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
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
Oops, something went wrong.
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.
클릭 가능한 div의 키보드 접근성 보완 필요
onClick만 부여된 div는 키보드로 포커스/활성화가 어려워 a11y 이슈입니다. onClick 존재 시 role/tabIndex/Enter·Space 핸들링을 추가하세요.
다음 패치를 제안합니다:
📝 Committable suggestion
🤖 Prompt for AI Agents