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 } }} href={{ pathname: `/posts/${postId}`, query: { reply: true } }}
> >
<BsFillReplyFill /> <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} {replyCount}
</div> </div>
</Link> </Link>
@@ -50,7 +50,7 @@ export default function PostActionButton({
}`} }`}
> >
<BiSolidLike />{' '} <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} {likeCount}
</div> </div>
</button> </button>