-
Notifications
You must be signed in to change notification settings - Fork 1
Refactor/리스트페이지 레이아웃 #64
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
The head ref may contain hidden characters: "refactor/\uB9AC\uC2A4\uD2B8\uD398\uC774\uC9C0_\uB808\uC774\uC544\uC6C3"
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c867e21
💄 style : 리스트 로딩 시 스피너 위치와 배경 크기 조정
kimsoyoung96 492f254
💄 style : '답변하러가기'버튼 스타일 조정 및 화살표 이미지 변경
kimsoyoung96 639cc4c
💄 style : '답변하러가기' 버튼 클릭 시 토스트 기능 추가
kimsoyoung96 d9fda5a
💄 style : 메인페이지 '질문하러가기' 버튼과 CSS통일 및 이미지 CLS 수정
kimsoyoung96 ab2e6f7
🔀 merge : merge 브랜치 병합
kimsoyoung96 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import PropTypes from 'prop-types'; | ||
|
||
const ToastMovePage = ({ toastMessage }) => | ||
toastMessage ? ( | ||
<div className='fixed bottom-[100px] md:bottom-[60px] left-1/2 px-5 py-3 bg-black rounded-lg text-sm/[18px] font-medium text-white -translate-x-1/2 shadow-2pt animate-slide-up-fade-delete'> | ||
{toastMessage} | ||
</div> | ||
) : null; | ||
|
||
ToastMovePage.propTypes = { | ||
toastMessage: PropTypes.string.isRequired, | ||
}; | ||
|
||
export default ToastMovePage; |
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.
Uh oh!
There was an error while loading. Please reload this page.