Skip to content

Commit fb152aa

Browse files
committed
fix: 후기 길어질 경우 펼치기/접기 글자 줄바꿈 생김 해결
1 parent a18e414 commit fb152aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/detail/ReviewList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ const ReviewList = React.memo(({ scriptId, review }: ReviewLitProps) => {
194194
<div className="flex justify-between mb-[20px]">
195195
{isOverflow && (
196196
<button
197-
className="flex items-center gap-[6px] text-[#777] p-small-medium cursor-pointer"
197+
className="flex items-center gap-[6px] text-[#777] p-small-medium cursor-pointer whitespace-nowrap"
198198
onClick={() => setIsExpanded(!isExpanded)}
199199
>
200200
{isExpanded ? "접기" : "펼쳐보기"}

0 commit comments

Comments
 (0)