-
Notifications
You must be signed in to change notification settings - Fork 26
[이연수] Sprint4 #82
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
kiJu2
merged 3 commits into
codeit-bootcamp-frontend:Basic-이연수
from
suuuuya:Basic-이연수-sprint4
Jul 17, 2025
The head ref may contain hidden characters: "Basic-\uC774\uC5F0\uC218-sprint4"
Merged
[이연수] Sprint4 #82
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
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,115 @@ | ||
| /* auth header */ | ||
| body[class*=sign-] .header { | ||
| position: relative; | ||
| height: auto; | ||
| display: flex; | ||
| justify-content: center; | ||
| border: 0; | ||
| background-color: transparent; | ||
| margin-bottom: 40px; | ||
| } | ||
|
|
||
| body[class*=sign-] .header .ico--logo { | ||
| width: 396px; | ||
| height: 132px; | ||
| } | ||
|
|
||
| /* auth */ | ||
| body[class*=sign-] .wrap { | ||
| padding: 60px 0; | ||
| } | ||
|
|
||
| /* sign-in/sign-out */ | ||
| body[class*=sign-] .wrap { | ||
| min-height: 100vh; | ||
| display: flex; | ||
| flex-direction: column; | ||
| justify-content: center; | ||
| } | ||
|
|
||
| body[class*=sign-] .inner { | ||
| max-width: calc(640px + 104px); | ||
| padding: 0 52px; | ||
| margin: 0 auto; | ||
| } | ||
|
|
||
| body[class*=sign-] .main { | ||
| display: grid; | ||
| gap: 24px 0; | ||
| } | ||
|
|
||
| body[class*=sign-] .sns-login { | ||
| background: #E6F2FF; | ||
| border-radius: 8px; | ||
| font-weight: 500; | ||
| padding: 16px 23px; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
| } | ||
|
|
||
| body[class*=sign-] .sns-list { | ||
| display: flex; | ||
| align-items: center; | ||
| gap: 0 16px; | ||
| } | ||
|
|
||
| body[class*=sign-] .sns-list .ico { | ||
| width: 42px; | ||
| height: 42px; | ||
| background-repeat: no-repeat; | ||
| background-position: center; | ||
| background-size: 100%; | ||
| } | ||
|
|
||
| body[class*=sign-] .sns-list a { | ||
| display: block; | ||
| } | ||
|
|
||
| body[class*=sign-] .sns-list .ico--google { | ||
| background-image: url(../../../img/ico/ico-google.svg); | ||
| } | ||
|
|
||
| body[class*=sign-] .sns-list .ico--kakao { | ||
| background-image: url(../../../img/ico/ico_kakao.svg); | ||
| } | ||
|
|
||
| body[class*=sign-] .auth-find { | ||
| font-weight: 500; | ||
| text-align: center; | ||
| font-size: var(--text-md-size); | ||
| line-height: var(--text-md-height); | ||
| } | ||
|
|
||
| body[class*=sign-] .auth-find .btn { | ||
| margin-left: 4px; | ||
| } | ||
|
|
||
|
|
||
| /* [Tablet] media query */ | ||
| @media screen and (max-width: 1199px) { | ||
| body[class*=sign-] .wrap { | ||
| padding: 48px 0; | ||
| } | ||
| } | ||
|
|
||
| /* [Mobile] media query */ | ||
| @media screen and (max-width: 767px) { | ||
| body[class*=sign-] .header { | ||
| margin-bottom: 24px; | ||
| } | ||
|
|
||
| body[class*=sign-] .header .ico--logo { | ||
| width: 198px; | ||
| height: 66px; | ||
| } | ||
|
|
||
| body[class*=sign-] .wrap { | ||
| padding: 24px 0; | ||
| } | ||
|
|
||
| body[class*=sign-] .inner { | ||
| padding: 0 16px; | ||
| max-width: 400px; | ||
| } | ||
| } |
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.
오호 경로만 봐도 어떤 목적의 스타일인지 알겠네요 👍👍