Skip to content

Commit ee8ad4f

Browse files
authored
Merge pull request #300 from Podo-Store/feat/game240-responsive-design-320
fix: 320 이외 화면 회원가입 페이지 글씨 폰트 크기 오류
2 parents 6655869 + 4b95dfd commit ee8ad4f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/components/auth/signUp/SignUp1.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const SignUp1 = ({ onNext, userInfo, setUserInfo }) => {
9191
checkIdDuplicated(id);
9292
setIdChecker({ ...idChecker, show: false });
9393
}}
94-
fontMode="12"
94+
fontMode={!isSmallMobile ? "default" : "12"}
9595
style={isSmallMobile ? { height: "48px" } : {}}
9696
checkerShowFlag={id.length > 0}
9797
checkerMessages={[

src/components/auth/signUp/SignUp2.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const SignUp2 = ({ onPrevious, onNext, userInfo, setUserInfo }) => {
8989
onBlur={() => {
9090
setPwChecker({ ...pwChecker, show: false });
9191
}}
92-
fontMode="12"
92+
fontMode={!isSmallMobile ? "default" : "12"}
9393
style={isSmallMobile ? { height: "48px" } : {}}
9494
checkerShowFlag={pw.length > 0}
9595
checkerMessages={[
@@ -120,7 +120,7 @@ const SignUp2 = ({ onPrevious, onNext, userInfo, setUserInfo }) => {
120120
setPwCheckChecker({ ...pwCheckChecker, show: true });
121121
}
122122
}}
123-
fontMode="12"
123+
fontMode={!isSmallMobile ? "default" : "12"}
124124
style={isSmallMobile ? { height: "48px" } : {}}
125125
errorFlag={pwCheckChecker.show && !pwCheckChecker.equal}
126126
errorMessage="비밀번호가 일치하지 않습니다."

src/components/auth/signUp/SignUp3.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const SignUp3 = ({
125125
setHasClickedInputFlag(false);
126126
checkNameDuplicated(name);
127127
}}
128-
fontMode="12"
128+
fontMode={!isSmallMobile ? "default" : "12"}
129129
style={isSmallMobile ? { height: "48px" } : {}}
130130
checkerShowFlag={name.length > 0}
131131
checkerMessages={[

src/components/auth/signUp/SignUp4.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const SignUp4 = ({
151151
onBlur={() => {
152152
setEmailChecker({ ...emailChecker, show: false });
153153
}}
154-
fontMode="12"
154+
fontMode={!isSmallMobile ? "default" : "12"}
155155
style={isSmallMobile ? { height: "48px" } : {}}
156156
sideBtnTitle="인증"
157157
sideBtnOnClick={onClickEmailSend}
@@ -186,7 +186,7 @@ const SignUp4 = ({
186186
setEmailCodeChecker({ show: false, match: false });
187187
setEmailCode(event.target.value);
188188
}}
189-
fontMode="12"
189+
fontMode={!isSmallMobile ? "default" : "12"}
190190
style={isSmallMobile ? { height: "48px" } : {}}
191191
errorMessageCustomFlag="true" // 이메일 인증 관련 메시지 커스텀
192192
sideBtnTitle="확인"

0 commit comments

Comments
 (0)