-
Notifications
You must be signed in to change notification settings - Fork 8
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
[Style] CSS 스타일 개선 #1571
Merged
Merged
[Style] CSS 스타일 개선 #1571
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
b129bc1
Merge pull request #1413 from 42organization/main
izone00 c7a59c2
Merge pull request #1423 from 42organization/main
izone00 8f8e131
Merge pull request #1511 from 42organization/agenda
JeongRon 8e11e6b
Merge pull request #1567 from 42organization/agenda
cweedlee a37f1f8
Chore: console.log제거, width 조절
irenee-14 54d59e5
Fix: index 페이지 select 항목 공백 제거
irenee-14 960683d
style: agendaList 깨짐
cweedlee b12f478
fix: 공지사항 선택 오류
cweedlee bb1bf91
style: MyAgendaList 깨짐
cweedlee 09798c1
Merge pull request #1568 from 42organization/test-deploy
cweedlee cbe3498
Update main-deploy.yml
cweedlee 04a7800
Merge pull request #1569 from 42organization/siwolee-patch-1
cweedlee 9d62a60
Style: agendaDetail / 대회 설명 텍스트 개행 처리
JeongRon 0092bd8
Fix: 첫 페이지 AGENDA -> Agenda
JeongRon a23053e
Style: 공지사항 내용 개행처리
JeongRon f30707f
Style: index 첫 페이지 버튼 클릭 모션 개선
JeongRon 241ac21
Style: index페이지 / 모집 중 아젠다 없을 시 UI 개선
JeongRon 3f8be73
Fix: 프로필 페이지 / 업적 이미지 hover 효과 적용
JeongRon 0972f8c
Style: index 첫 페이지 텍스트 단어 변경
JeongRon 0fd92fd
Style: 프로필 페이지 / 프로필 카드, 리스트 height 조절
JeongRon af3a744
Fix: 프로필 페이지 / AGENDA LIST UI 개선
JeongRon af33e89
Style: Agenda list 페이지 / 버튼 클릭 커서 style 추가
JeongRon 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 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 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 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 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 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 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 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 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 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 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 |
---|---|---|
|
@@ -37,7 +37,7 @@ export default function AgendaDescription({ agendaData }: AgendaProps) { | |
<div className={styles.midContainer}> | ||
<div className={styles.descriptionItem}> | ||
<h3>대회 설명</h3> | ||
<span>{agendaContent}</span> | ||
<span className={styles.preWrap}>{agendaContent}</span> | ||
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. 굿굿 |
||
</div> | ||
<div className={styles.descriptionItem}> | ||
<h3>모집 완료 기간</h3> | ||
|
This file contains 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 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 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 |
---|---|---|
|
@@ -29,7 +29,7 @@ const Agenda: NextPage = () => { | |
<AgendaTitle /> | ||
<div className={styles.agendaContainer}> | ||
<div className={listStyles.agendaListTextWrapper}> | ||
<h2>AGENDA LIST</h2> | ||
<h2 className={listStyles.web}>AGENDA LIST</h2> | ||
<div> | ||
<button | ||
className={`${listStyles.agendaListStatus} | ||
|
@@ -39,7 +39,7 @@ const Agenda: NextPage = () => { | |
> | ||
모집중 | ||
</button> | ||
{' | '} | ||
{'|'} | ||
<button | ||
className={`${listStyles.agendaListStatus} | ||
${showCurrent === 'current' ? listStyles.selectedStatus : ''}`} | ||
|
@@ -48,7 +48,7 @@ const Agenda: NextPage = () => { | |
> | ||
진행중 | ||
</button> | ||
{' | '} | ||
{'|'} | ||
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. 기존 deploy된 부분이 merge가 안 된것 같습니다! 확인부탁드려요~ |
||
<button | ||
className={`${listStyles.agendaListStatus} | ||
${showCurrent === 'history' ? listStyles.selectedStatus : ''}`} | ||
|
Oops, something went wrong.
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.
멘트 사소하지만 좋네여...