@@ -116,7 +116,7 @@ const CreateGroupModal: React.FC<CreateGroupModalProps> = ({isOpen, onClose}) =>
116116 onChange = { ( e ) => setGroupName ( e . target . value ) }
117117 placeholder = "예: 신촌 하우스"
118118 maxLength = { 30 }
119- className = "w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-transparent"
119+ className = "w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:outline-none focus: border-transparent"
120120 />
121121 < div className = "text-xs text-gray-500 mt-1" >
122122 { groupName . length } /30
@@ -134,7 +134,7 @@ const CreateGroupModal: React.FC<CreateGroupModalProps> = ({isOpen, onClose}) =>
134134 placeholder = "그룹에 대한 간단한 설명을 입력하세요"
135135 rows = { 3 }
136136 maxLength = { 100 }
137- className = "w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-transparent resize-none"
137+ className = "w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:outline-none focus: border-transparent resize-none"
138138 />
139139 < div className = "text-xs text-gray-500 mt-1" >
140140 { description . length } /100
@@ -149,7 +149,7 @@ const CreateGroupModal: React.FC<CreateGroupModalProps> = ({isOpen, onClose}) =>
149149 < select
150150 value = { maxMembers }
151151 onChange = { ( e ) => setMaxMembers ( Number ( e . target . value ) ) }
152- className = "w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-transparent"
152+ className = "w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:outline-none focus: border-transparent"
153153 >
154154 { [ 2 , 3 , 4 , 5 , 6 , 7 , 8 ] . map ( num => (
155155 < option key = { num } value = { num } > { num } 명</ option >
@@ -170,7 +170,7 @@ const CreateGroupModal: React.FC<CreateGroupModalProps> = ({isOpen, onClose}) =>
170170 placeholder = "0"
171171 min = "0"
172172 step = "1000"
173- className = "w-full px-4 py-3 pr-8 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-transparent"
173+ className = "w-full px-4 py-3 pr-8 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:outline-none focus: border-transparent"
174174 />
175175 < span className = "absolute right-3 top-3 text-gray-500" > 원</ span >
176176 </ div >
0 commit comments