@@ -25,16 +25,15 @@ import X from '@assets/default/x.svg';
2525import Loading from '@components/Loading' ;
2626import Modal from '@components/Modal' ;
2727import { StyledText } from '@components/Text/StyledText' ;
28+ import CommentItem from './CommentItem/index' ;
29+ import MenuButtonList from './MenuButtonList/index' ;
2830
2931import type { Comment , GetCommentListResponse } from '@apis/post-comment/dto' ;
3032import type { GetPostLikeListResponse } from '@apis/post-like/dto' ;
3133import type { ModalProps } from '@components/Modal/dto' ;
3234
3335import type { LikeCommentBottomSheetProps } from '../dto' ;
3436
35- import CommentItem from './CommentItem/index' ;
36- import MenuButtonList from './MenuButtonList/index' ;
37-
3837import { TabContainer , Tab , ContentContainer , Content , BigUserProfile , LikeItem , InputLayout } from './styles' ;
3938
4039const LikeCommentBottomSheetContent : React . FC < LikeCommentBottomSheetProps > = ( { tab, likeCount, commentCount } ) => {
@@ -338,15 +337,15 @@ const LikeCommentBottomSheetContent: React.FC<LikeCommentBottomSheetProps> = ({
338337 < Tab $active = { activeTab === 'likes' } onClick = { ( ) => setActiveTab ( 'likes' ) } >
339338 < StyledText
340339 $textTheme = { { style : 'body2-bold' } }
341- color = { activeTab === 'likes' ? theme . colors . pink : theme . colors . gray3 }
340+ color = { activeTab === 'likes' ? theme . colors . brand . primary : theme . colors . text . tertiary }
342341 >
343342 좋아요 { postLikeCount || 0 }
344343 </ StyledText >
345344 </ Tab >
346345 < Tab $active = { activeTab === 'comments' } onClick = { ( ) => setActiveTab ( 'comments' ) } >
347346 < StyledText
348347 $textTheme = { { style : 'body2-bold' } }
349- color = { activeTab === 'comments' ? theme . colors . pink : theme . colors . gray3 }
348+ color = { activeTab === 'comments' ? theme . colors . brand . primary : theme . colors . text . tertiary }
350349 >
351350 코멘트 { postCommentCount || 0 }
352351 </ StyledText >
@@ -356,7 +355,7 @@ const LikeCommentBottomSheetContent: React.FC<LikeCommentBottomSheetProps> = ({
356355 < ContentContainer $isCommentTab = { activeTab === 'comments' } >
357356 { activeTab === 'likes' &&
358357 ( postLikeCount === 0 ? (
359- < Content $textTheme = { { style : 'body2-medium' } } color = { theme . colors . gray3 } >
358+ < Content $textTheme = { { style : 'body2-medium' } } color = { theme . colors . text . tertiary } >
360359 아직 좋아요가 없습니다
361360 </ Content >
362361 ) : (
@@ -375,7 +374,7 @@ const LikeCommentBottomSheetContent: React.FC<LikeCommentBottomSheetProps> = ({
375374 { activeTab === 'comments' && (
376375 < >
377376 { postCommentCount === 0 ? (
378- < Content $textTheme = { { style : 'body2-medium' } } color = { theme . colors . gray3 } >
377+ < Content $textTheme = { { style : 'body2-medium' } } color = { theme . colors . text . tertiary } >
379378 아직 댓글이 없습니다
380379 </ Content >
381380 ) : (
0 commit comments