-
Notifications
You must be signed in to change notification settings - Fork 16
[권새롬] Sprint22 스프린트 미션 3 #24
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
Open
rhdtls3562
wants to merge
1
commit into
codeit-bootcamp-frontend:Basic-권새롬
Choose a base branch
from
rhdtls3562:Basic-권새롬-sprint3
base: Basic-권새롬
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.
The head ref may contain hidden characters: "Basic-\uAD8C\uC0C8\uB86C-sprint3"
+119
−131
Open
Changes from all commits
Commits
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -173,3 +173,52 @@ aside.easy_log img { | |
| text-decoration: underline; | ||
| color: var(--blue); | ||
| } | ||
|
|
||
| /* ======================================== | ||
| 반응형 스타일 (Responsive Styles) | ||
| ======================================== */ | ||
|
|
||
| /* Tablet: 768px 이상 ~ 1199px 이하 - PC와 동일한 디자인 유지 */ | ||
| @media (min-width: 768px) and (max-width: 1199px) { | ||
| /* Tablet 사이즈에서도 PC와 동일한 디자인 유지 */ | ||
| input { | ||
| width: 640px; | ||
| } | ||
|
|
||
| aside.easy_log { | ||
| width: 640px; | ||
| } | ||
| } | ||
|
|
||
| /* Mobile: 375px 이상 ~ 767px 이하 */ | ||
| @media (min-width: 375px) and (max-width: 767px) { | ||
| .login-container { | ||
| padding: 60px 16px; | ||
| align-items: stretch; | ||
|
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. |
||
| } | ||
|
|
||
| form { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| margin: 0 auto; | ||
| } | ||
|
|
||
| input { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| } | ||
|
|
||
| aside.easy_log { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| margin-left: auto; | ||
| margin-right: auto; | ||
| } | ||
|
|
||
| .signup_link { | ||
| width: 100%; | ||
| max-width: 400px; | ||
| margin: 0 auto; | ||
| text-align: center; | ||
| } | ||
| } | ||
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
|
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. |
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
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.
여기서
width속성 값의 단위를px말고rem으로도 설정해 볼 수 있겠네요.rem으로 만들면 어떤 장점이 있을지 고민해 보세요. 🤔