Improve spacing between GroupGridItem
This commit is contained in:
parent
f61202c6e0
commit
63ca6554d1
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ const GroupGridItem = forwardRef((props: IGroup, ref: React.ForwardedRef<HTMLDiv
|
|||
return (
|
||||
<div
|
||||
key={group.id}
|
||||
className='relative flex shrink-0 flex-col space-y-2 px-0.5'
|
||||
className='relative flex shrink-0 flex-col space-y-2 px-1'
|
||||
style={{
|
||||
width,
|
||||
}}
|
||||
|
|
|
@ -53,7 +53,7 @@ const PopularGroups = () => {
|
|||
{isFetching ? (
|
||||
new Array(4).fill(0).map((_, idx) => (
|
||||
<div
|
||||
className='relative flex shrink-0 flex-col space-y-2 px-0.5'
|
||||
className='relative flex shrink-0 flex-col space-y-2 px-1'
|
||||
style={{ width: width || 'auto' }}
|
||||
key={idx}
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue