fix: count background color

This commit is contained in:
Stevan Freeborn
2023-09-15 13:12:55 -05:00
parent c2463f582f
commit f15621c8f1
+2 -2
View File
@@ -36,7 +36,7 @@ export default function PostActionButton({
href={{ pathname: `/posts/${postId}`, query: { reply: true } }}
>
<BsFillReplyFill />
<div className='flex items-center justify-center h-6 w-6 rounded-full text-xs bg-secondary-gray text-white'>
<div className='flex items-center justify-center h-6 w-6 rounded-full text-xs bg-primary-gray text-white'>
{replyCount}
</div>
</Link>
@@ -50,7 +50,7 @@ export default function PostActionButton({
}`}
>
<BiSolidLike />{' '}
<div className='flex items-center justify-center h-6 w-6 rounded-full text-xs bg-secondary-gray text-white'>
<div className='flex items-center justify-center h-6 w-6 rounded-full text-xs bg-primary-gray text-white'>
{likeCount}
</div>
</button>