Skip to content

Commit 294a76e

Browse files
committed
fix: 테두리 통일
1 parent 92b8ee4 commit 294a76e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/(pages)/work-talk/[talkId]/edit/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export default function EditTalk({ params }: { params: { talkId: string } }) {
194194
render={({ field }) => (
195195
<textarea
196196
{...field}
197-
className="h-[240px] w-full resize-none rounded-lg bg-background-200 p-[14px] text-[16px] placeholder:text-grayscale-400 focus:border focus:border-primary-orange-300 focus:outline-none md:text-[18px] lg:text-[20px]"
197+
className="h-[240px] w-full resize-none rounded-lg bg-background-200 p-[14px] text-[16px] placeholder:text-grayscale-400 focus:border-[0.5px] focus:border-primary-orange-300 focus:outline-none md:text-[18px] lg:text-[20px]"
198198
placeholder="내용을 입력하세요"
199199
/>
200200
)}

src/app/(pages)/work-talk/add/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export default function AddTalk() {
166166
render={({ field }) => (
167167
<textarea
168168
{...field}
169-
className="h-[240px] w-full resize-none rounded-lg bg-background-200 p-[14px] text-[16px] placeholder:text-grayscale-400 focus:border focus:border-primary-orange-300 focus:outline-none md:text-[18px] lg:text-[20px]"
169+
className="h-[240px] w-full resize-none rounded-lg bg-background-200 p-[14px] text-[16px] placeholder:text-grayscale-400 focus:border-[0.5px] focus:border-primary-orange-300 focus:outline-none md:text-[18px] lg:text-[20px]"
170170
placeholder="내용을 입력하세요"
171171
/>
172172
)}

0 commit comments

Comments
 (0)