Skip to content

Commit d4973b5

Browse files
committed
Reduce gap inside Reactions and remove padding
1 parent 2f48fa6 commit d4973b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.26",
3+
"version": "1.0.27",
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ const Reactions: FC<IReactionsProps> = ({
1818
isDisliking
1919
}) => {
2020
return (
21-
<div className='flex gap-4 py-2 text-primary-text-color'>
21+
<div className='flex gap-4 text-primary-text-color'>
2222
<div className='flex gap-8'>
23-
<div className='my-0 flex items-center justify-center gap-4'>
23+
<div className='my-0 flex items-center justify-center gap-2'>
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-4'>
40+
<div className='flex items-center justify-center gap-2'>
4141
{isDisliking ? (
4242
<Spinner className='w-5' />
4343
) : (

0 commit comments

Comments
 (0)