-
Notifications
You must be signed in to change notification settings - Fork 44
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
[백승렬] Week 3 #111
Merged
kiJu2
merged 18 commits into
codeit-bootcamp-frontend:part1-백승렬
from
SeungRyeolBaek:main
Mar 6, 2024
Merged
[백승렬] Week 3 #111
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
967be9e
전역에 쓰이는 설정용 css 새로운 파일에 작성
SeungRyeolBaek b75f114
lang="ko" html 태그에 추가
SeungRyeolBaek 47b28a1
alt 태그 추가
SeungRyeolBaek 4124246
랜딩페이지의 로그인 버튼/바로가기 버튼 태그 변경
SeungRyeolBaek bcd80a9
-meta 태그 이미지 설정완료
SeungRyeolBaek f4136fd
-메타태그 경로 수정
SeungRyeolBaek ee47445
메타태그 이미지 변경
SeungRyeolBaek 20b3fa7
style: Naming 수정
SeungRyeolBaek aacd806
feat: 위클리 미션 3주차 심화 요구사항 구현
SeungRyeolBaek 8096006
feat: reset.css 추가
SeungRyeolBaek fb3067d
fix: 메타 태그 이미지 경로
SeungRyeolBaek 0e2195e
feat: 로그인 페이지에 에러메시지 로직 구현
SeungRyeolBaek c1c4f1f
feat: 회원가입 페이지 에러메시지 구현
SeungRyeolBaek efe635e
fix: nav의 로그인 버튼의 모바일 사이즈 조정
SeungRyeolBaek 96883a5
fix: 네비게이션 tablet사이즈에서 양 옆 공백 간격 줄임
SeungRyeolBaek 23c48d1
refactor: Delete weekly_mission directory
SeungRyeolBaek ea05608
style: auth.js 객체로 정리 및 모듈 임포트로 사용방식 변경
4cacf01
style: 로그인/회원가입 로직의 모듈화: 모듈 import형식으로 메소드 쓰도록 만듬
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* 전역 설정 */ | ||
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.
|
||
*{ | ||
box-sizing: border-box; | ||
} | ||
|
||
/* 클릭으로 동작 -> 커서모양 변경으로 알림 */ | ||
a{ | ||
cursor: pointer; | ||
} | ||
button{ | ||
cursor: pointer; | ||
} |
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.
네이밍이 더욱 명확해졌네요. 보기 좋습니다 !