Skip to content

Commit b5f9182

Browse files
committed
Feat: 댓글업로드 로딩중일때 애니메이션 추가 #65
1 parent 66ca85d commit b5f9182

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

components/ui/BoardCard/BoardCardPackage/CommentWrapper.tsx

+2-4
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,8 @@ export function BoardCardCommentWrapper({
111111
>
112112
<PaperPlaneIcon
113113
className={`w-8 h-8 ${
114-
isLoading || commentText.length === 0
115-
? 'fill-grey-300'
116-
: 'fill-primary-300'
117-
}`}
114+
commentText.length === 0 ? 'fill-grey-300' : 'fill-primary-300'
115+
} ${isLoading ? 'animate-bounce' : null}`}
118116
/>
119117
</button>
120118
</FlexBox>

0 commit comments

Comments
 (0)