Skip to content

Commit 882b189

Browse files
authored
Merge pull request #178 from prgrms-aibe-devcourse/dev
dev to main
2 parents ee8c1ea + 872c820 commit 882b189

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/components/community/PostDetail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ const PostDetail: React.FC<PostDetailProps> = ({
582582
onChange={(e) => setNewComment(e.target.value)}
583583
placeholder="댓글을 작성해보세요..."
584584
rows={3}
585-
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"
585+
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"
586586
maxLength={500}
587587
/>
588588
<div className="flex items-center justify-between mt-3">

src/components/groups/CreateGroupModal.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)