-
Notifications
You must be signed in to change notification settings - Fork 39
[이지현] Sprint3 #93
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
The head ref may contain hidden characters: "Basic-\uC774\uC9C0\uD604-sprint3"
[이지현] Sprint3 #93
Changes from all commits
a6e66e5
c9de9e2
08a33b6
27fcacf
5ae67a7
8a48ccc
e0edb69
c34cefe
77617cd
c9fadbe
2780ba2
676d3ca
81e7eda
d512865
3e1e609
faebdd0
9c43698
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,40 +1,27 @@ | ||||||
| :root { | ||||||
| --gray900 : #111827; | ||||||
| --gray800 : #1F2937; | ||||||
| --gray700: #374151; | ||||||
| --gray600 : #4B5563; | ||||||
| --gray500 : #6B7280; | ||||||
| --gray400: #9CA3AF; | ||||||
| --gray200 : #E5E7EB; | ||||||
| --gray100 : #F3F4F6; | ||||||
| --gray50: #F9FAFB; | ||||||
| --blue: #3692FF; | ||||||
| html, body { | ||||||
| display: flex; | ||||||
| flex-direction: column; | ||||||
| justify-content: center; | ||||||
| align-items: center; | ||||||
| } | ||||||
|
|
||||||
| .logo { | ||||||
| width: 396px; | ||||||
| width: auto; | ||||||
| height: 132px; | ||||||
| margin: 0 122px; | ||||||
| } | ||||||
|
|
||||||
| body { | ||||||
| display: flex; | ||||||
| flex-direction: column; | ||||||
| justify-content: center; | ||||||
| align-items: center; | ||||||
| } | ||||||
|
|
||||||
| .input_info { | ||||||
| .input-info { | ||||||
| margin-top: 40px; | ||||||
| } | ||||||
|
|
||||||
| .input_group { | ||||||
| .input-group { | ||||||
| font-size: 18px; | ||||||
| font-weight: 700; | ||||||
| line-height: 26px; | ||||||
| } | ||||||
|
|
||||||
| .input_group, .login_btn { | ||||||
| .input-group, .login-btn { | ||||||
| margin-bottom: 24px; | ||||||
| } | ||||||
|
|
||||||
|
|
@@ -52,28 +39,39 @@ input { | |||||
| padding: 16px 24px 14px; | ||||||
| } | ||||||
|
|
||||||
| #pwd { | ||||||
| padding: 16px 24px 16px; | ||||||
| input::placeholder { | ||||||
| color: var(--gray400); | ||||||
| font-weight: 400; | ||||||
| font-size: 16px; | ||||||
| line-height: 26px; | ||||||
| letter-spacing: 0%; | ||||||
| } | ||||||
|
|
||||||
| /* #pwd { | ||||||
| padding: 16px 24px 16px; | ||||||
| } */ | ||||||
|
|
||||||
|
Comment on lines
+50
to
+53
Collaborator
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. 💊 제안 |
||||||
|
|
||||||
| .password { | ||||||
| display: flex; | ||||||
| position: relative; | ||||||
| width: 640px; | ||||||
| width:100%; | ||||||
| } | ||||||
|
|
||||||
| .pwd_icon { | ||||||
| display: inline-flex; | ||||||
| .pwd-icon-btn { | ||||||
| position: absolute; | ||||||
| right: 16px; | ||||||
| top: 32px; | ||||||
| width: 24px; | ||||||
| height: 24px; | ||||||
| right: 16px; | ||||||
| top: 32px; | ||||||
| } | ||||||
|
|
||||||
| .pwd-icon { | ||||||
| width: 100%; | ||||||
| height: 100%; | ||||||
| } | ||||||
|
|
||||||
|
|
||||||
| .submit_btn button { | ||||||
| .submit-btn button { | ||||||
| color: var(--gray100); | ||||||
| background-color: var(--blue); | ||||||
| width: 640px; | ||||||
|
|
@@ -86,18 +84,15 @@ input { | |||||
| margin-bottom: 24px; | ||||||
| } | ||||||
|
|
||||||
| .sign_easy { | ||||||
| .sign-easy { | ||||||
| display: flex; | ||||||
|
|
||||||
| box-sizing: border-box; | ||||||
| justify-content: space-between; | ||||||
| align-items: center; | ||||||
| padding: 16px 23px; | ||||||
| gap: 10px; | ||||||
|
|
||||||
| width: 640px; | ||||||
| height: 74px; | ||||||
|
|
||||||
| background: #E6F2FF; /* 배경색 */ | ||||||
| border-radius: 8px; | ||||||
|
|
||||||
|
|
@@ -111,7 +106,7 @@ input { | |||||
| text-align: center; | ||||||
| } | ||||||
|
|
||||||
| .sign_easy div { | ||||||
| .sign-easy div { | ||||||
| display: flex; | ||||||
| gap: 16px; | ||||||
| } | ||||||
|
|
@@ -122,7 +117,7 @@ input { | |||||
| } | ||||||
|
|
||||||
|
|
||||||
| .move_page { | ||||||
| .move-page { | ||||||
| margin-top: 24px; | ||||||
| display: flex; | ||||||
| justify-content: center; | ||||||
|
|
@@ -133,7 +128,53 @@ input { | |||||
| color: var(--gray800); | ||||||
| } | ||||||
|
|
||||||
| .move_page a { | ||||||
| .move-page a { | ||||||
| color: var(--blue); | ||||||
| text-decoration: underline; | ||||||
| } | ||||||
|
|
||||||
|
|
||||||
| @media (max-width: 1199px) and (min-width: 768px) { | ||||||
| body { | ||||||
| margin: 190px 52px 325px; | ||||||
| } | ||||||
|
|
||||||
|
|
||||||
|
Comment on lines
+141
to
+142
Collaborator
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. ❗️ 수정요청
Suggested change
|
||||||
| } | ||||||
|
|
||||||
| @media (max-width: 767px) and (min-width: 375px) { | ||||||
|
Collaborator
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. 💊 제안 |
||||||
|
|
||||||
| .logo-a { | ||||||
| display: flex; | ||||||
| justify-content: center; | ||||||
| } | ||||||
|
|
||||||
| .logo { | ||||||
| width: 198px; | ||||||
| height: 66px; | ||||||
| } | ||||||
|
|
||||||
| main { | ||||||
| width: 100%; | ||||||
| max-width: 400px; | ||||||
| min-width: 343px; | ||||||
| margin: 0 auto; | ||||||
| } | ||||||
|
|
||||||
| input { | ||||||
|
Collaborator
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. 💊 제안 예를 들어, 1월에는 auth.css를 사용하는 페이지가 로그인, 회원가입만 존재하고 해당 페이지의 input 요소가 width 속성 100%를 가지고 있어 이렇게 작업을 했지만 2월에 비밀번호 찾기라는 auth 관련 새 페이지가 추가될 수 있습니다. 해당 페이지는 다른 페이지들처럼 디자인은 거의 비슷하지만 사용되는 input 요소의 width 속성이 90% 일 수 있습니다. 따라서 이렇게 디자인에 따라 다양하게 적용될 수 있는 스타일의 경우 classname을 통해 개별로 css 해주시는 것을 추천드려요. 물론 지금 저희가 작업하는 환경의 경우 위와 같은 일은 없겠지만 클래스를 이용한 스타일링을 하시는 습관을 들이시는 것이 좋습니다~ |
||||||
| width: 100%; | ||||||
| } | ||||||
|
|
||||||
| .submit-btn button { | ||||||
| width: 100%; | ||||||
| } | ||||||
|
|
||||||
| .sign-easy { | ||||||
| width: 100%; | ||||||
| } | ||||||
|
|
||||||
| .pwd-icon-btn { | ||||||
| right: 16px; | ||||||
| } | ||||||
|
|
||||||
| } | ||||||
|
Collaborator
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. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| :root { | ||
| --gray900 : #111827; | ||
| --gray800 : #1F2937; | ||
| --gray700: #374151; | ||
| --gray600 : #4B5563; | ||
| --gray500 : #6B7280; | ||
| --gray400: #9CA3AF; | ||
| --gray200 : #E5E7EB; | ||
| --gray100 : #F3F4F6; | ||
| --gray50: #F9FAFB; | ||
| --blue: #3692FF; | ||
| } |


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.
💊 제안
이미지는 여백 없이 관리하시는 것이 디자인 구현할때 더 편리합니다.
이미지 자체가 여백을 가지고 있으면 헷갈릴 수 있으니 여백없이 추출하시는 것을 추천드려요!