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

Hotfix: 로그인 회원가입 폼 로고 클릭시 랜딩으로 이동, AuthInputField background 수정 #243

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion src/components/auth/SigninForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ const SigninForm = () => {
<section className={cx('container')}>
<div className={cx('signin')}>
<header className={cx('signin-header')}>
<p className={cx('signin-header-main-title')}>GGF</p>
<span className={cx('signin-header-main-title')}>
<Link href={PAGE_PATHS.landing}>GGF</Link>
</span>
<div className={cx('signin-header-sub-container')}>
<span className={cx('sub-title')}>BEST TEAMWORK</span>
<span className={cx('sub-title')}>IT&apos;s UP TO YOU</span>
Expand Down
4 changes: 3 additions & 1 deletion src/components/auth/SignupForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ const SignupForm = () => {
<section className={cx('container')}>
<div className={cx('signup')}>
<header className={cx('signup-header')}>
<p className={cx('signup-header-main-title')}>GGF</p>
<span className={cx('signup-header-main-title')}>
<Link href={PAGE_PATHS.landing}>GGF</Link>
</span>
<div className={cx('signup-header-sub-container')}>
<span className={cx('sub-title')}>BEST TEAMWORK</span>
<span className={cx('sub-title')}>IT&apos;s UP TO YOU</span>
Expand Down