@@ -24,8 +24,6 @@ const EmailLogin = () => {
24
24
const [ style , setStyle ] = useState ( {
25
25
bgColorEmail : "bg-inputBox" ,
26
26
bgColorPassword : "bg-inputBox" ,
27
- shadowEmail : "" ,
28
- shadowPassword : "" ,
29
27
} ) ;
30
28
31
29
//서버에 전달하기 위한 input Ref 생성
@@ -50,13 +48,11 @@ const EmailLogin = () => {
50
48
setStyle ( ( ) => ( {
51
49
...style ,
52
50
bgColorEmail : "bg-inputBoxFocus" ,
53
- shadowEmail : "drop-shadow-inputBoxShadow" ,
54
51
} ) ) ;
55
52
if ( value . trim ( ) === "" ) {
56
53
setStyle ( ( ) => ( {
57
54
...style ,
58
55
bgColorEmail : "bg-inputBox" ,
59
- shadowEmail : "" ,
60
56
} ) ) ;
61
57
}
62
58
if ( ! emailRegulationExp . test ( value ) ) {
@@ -68,13 +64,11 @@ const EmailLogin = () => {
68
64
setStyle ( ( ) => ( {
69
65
...style ,
70
66
bgColorPassword : "bg-inputBoxFocus" ,
71
- shadowPassword : "drop-shadow-inputBoxShadow" ,
72
67
} ) ) ;
73
68
if ( value . trim ( ) === "" ) {
74
69
setStyle ( ( ) => ( {
75
70
...style ,
76
71
bgColorPassword : "bg-inputBox" ,
77
- shadowPassword : "" ,
78
72
} ) ) ;
79
73
}
80
74
if ( ! passwordRegulationExp . test ( value ) ) {
@@ -136,11 +130,11 @@ const EmailLogin = () => {
136
130
} ;
137
131
138
132
return (
139
- < div className = "container h-full md " >
133
+ < div className = "container h-full" >
140
134
< div className = "ml-[20px] mr-[20px] " >
141
- < div className = "grid grid-rows mt -[100px]" >
135
+ < div className = "grid grid-rows pt -[100px]" >
142
136
< div className = "h-[150px]" >
143
- < div className = "mx-auto w-[150px] h-[64px] overflow-hidden gap-[10px] " >
137
+ < div className = "mx-auto w-[150px] h-[64px] overflow-hidden gap-[10px] " >
144
138
< img
145
139
src = { gnimsLogo }
146
140
alt = "곰캐릭터가 우쭐거리며 왠지 잘될 것 같은 기분포즈 중"
@@ -194,7 +188,6 @@ const EmailLogin = () => {
194
188
</ p >
195
189
</ div >
196
190
</ div >
197
-
198
191
< button
199
192
onClick = { onSubmit }
200
193
className = "h-[50px] rounded w-full bg-[#002C51] font-[700] text-[#ffff] mt-[24px]"
@@ -203,18 +196,18 @@ const EmailLogin = () => {
203
196
</ button >
204
197
</ div >
205
198
</ form >
206
- < div className = "mt-[26px] grid grid-cols-2 text-center" >
207
- < div className = "border-4 border-indigo-600 " >
199
+ < div className = "my-[40px] flex text-center" >
200
+ < div className = "border-black border-solid border-r-[1px] " >
208
201
< button
209
- className = "text-textBlack text-[16px] font-[400] px-[30px] py-[10px ]"
202
+ className = "text-textBlack text-[16px] font-[400] px-[30px] pr-[37px ]"
210
203
onClick = { ( ) => navigate ( "/developing" ) }
211
204
>
212
205
비밀번호 재설정
213
206
</ button >
214
207
</ div >
215
- < div >
208
+ < div className = "pl-[15px]" >
216
209
< button
217
- className = "text-textBlack text-[16px] font-[400] px-[30px] py-[10px ] "
210
+ className = "text-textBlack text-[16px] font-[400] px-[30px] pl-[40px ] "
218
211
onClick = { ( ) => navigate ( `/signup` ) }
219
212
>
220
213
회원가입
@@ -247,5 +240,4 @@ const EmailLogin = () => {
247
240
</ div >
248
241
) ;
249
242
} ;
250
-
251
243
export default EmailLogin ;
0 commit comments