Skip to content
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

[FIX] 로그인 페이지 반응형 수정 #386

Merged
merged 3 commits into from
Jan 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions src/pages/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Login() {
</a>
과{' '}
<a
href="https://topaz-work-262.notion.site/aa83c69d45144f1182f9f54f1fae8c38"
href="https://topaz-work-262.notion.site/b8929b8098f94dbc9f87c1de7f5aa5f5"
target="_blank"
rel="noreferrer"
>
Expand Down Expand Up @@ -61,7 +61,7 @@ const LeftSection = styled.section`
align-items: start;
justify-content: center;
width: 32rem;
height: 100%;
margin-right: 20rem;
margin-left: 20rem;
`;

Expand Down Expand Up @@ -98,6 +98,18 @@ const SignDescription = styled.p`
`;

const LoginImg = styled.img`
width: 70%;
height: 100%;
object-fit: cover;

border-radius: 0 8px 8px 0;

@media (width <= 1200px) {
width: 35%;
}

@media (width <= 900px) {
width: 25%;
}
`;
export default Login;
Loading