Skip to content

Commit 06fc9fe

Browse files
committed
Increase gap between reaction icons and count
1 parent 34c978d commit 06fc9fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@programmer_network/yail",
3-
"version": "1.0.24",
3+
"version": "1.0.25",
44
"description": "Programmer Network's official UI library for React",
55
"author": "Aleksandar Grbic - (https://programmer.network)",
66
"publishConfig": {

src/Components/Reactions/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Reactions: FC<IReactionsProps> = ({
2020
return (
2121
<div className='flex gap-4 py-2 text-primary-text-color'>
2222
<div className='flex gap-8'>
23-
<div className='my-0 flex items-center justify-center gap-1'>
23+
<div className='my-0 flex items-center justify-center gap-4'>
2424
{isLiking ? (
2525
<IconSpinner className='w-5' />
2626
) : (
@@ -37,7 +37,7 @@ const Reactions: FC<IReactionsProps> = ({
3737
</>
3838
)}
3939
</div>
40-
<div className='flex items-center justify-center gap-1'>
40+
<div className='flex items-center justify-center gap-4'>
4141
{isDisliking ? (
4242
<Spinner className='w-5' />
4343
) : (

0 commit comments

Comments
 (0)