-
Notifications
You must be signed in to change notification settings - Fork 10
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
[1주차] 김동혁 미션 제출합니다. #2
Open
ddhelop
wants to merge
8
commits into
CEOS-Developers:master
Choose a base branch
from
ddhelop:donghyeok
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
3744f29
feat: :sparkles: todo리스트 디자인 및 틀 설정
ddhelop 1c1d7ff
feat: todoList 항목추가, 삭제, 완료 기능 구현
ddhelop 316c6a7
test: 배포 테스트
ddhelop b54ecd5
feat: 할 일 삭제 시 애니메이션 추가
ddhelop 95ffb1a
fix: '추가' 버튼 크기 조정
ddhelop f5d4b19
fix: 할일 체크 시 로컬스토리지에 저장되지 않는 버그 수정
ddhelop 0266528
feat: 모바일(768px이하) 스타일
ddhelop daf9717
fix: 폰트 크기 조정
ddhelop 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ body { | |
background-color: #252423; | ||
} | ||
h1 { | ||
font-size: 18px; | ||
font-size: 1.125rem; | ||
color: #e9ecef; | ||
font-weight: 500; | ||
margin: 0; | ||
|
@@ -77,7 +77,7 @@ h1 { | |
} | ||
|
||
#todayDate { | ||
font-size: 10px; | ||
font-size: 0.625rem; | ||
color: gray; | ||
margin: 6px 0 0 1px; | ||
} | ||
|
@@ -137,7 +137,7 @@ h1 { | |
width: 36px; | ||
height: 22px; | ||
border-radius: 10px; | ||
font-size: 12px; | ||
font-size: 0.75rem; | ||
color: #788bff; | ||
} | ||
.submitBtn:hover { | ||
|
@@ -153,7 +153,7 @@ h1 { | |
width: 100%; | ||
height: 52px; | ||
border-radius: 10px; | ||
font-size: 13px; | ||
font-size: 0.81rem; | ||
|
||
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. 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. 오.. 이런 오류가 있었군요. 리팩토링하면서 수정해볼게요. 감사합니다~! |
||
display: flex; | ||
justify-content: space-between; | ||
|
@@ -168,6 +168,7 @@ h1 { | |
.todoList li span { | ||
width: 100%; | ||
padding: 0px 26.1px; | ||
font-size: 0.73rem; | ||
} | ||
|
||
.todoList li input { | ||
|
@@ -182,7 +183,7 @@ h1 { | |
width: 36px; | ||
height: 22px; | ||
border-radius: 10px; | ||
font-size: 12px; | ||
font-size: 0.75rem; | ||
color: #788bff; | ||
} | ||
.todoList li button:hover { | ||
|
@@ -198,11 +199,6 @@ h1 { | |
|
||
.header { | ||
padding-left: 20px; | ||
font-size: 1rem; | ||
} | ||
|
||
.title { | ||
font-size: 16px; | ||
} | ||
|
||
.WriteForm, | ||
|
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.
모든 단위를
rem
형식 혹은px
단위로 통일했었는데font-size
만rem
형식으로 바꿔주신 걸 보고 이렇게 사용할 수도 있구나 배웠어요!