Skip to content

Commit

Permalink
fix spacing grantee stats detail
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiano cardelli committed Aug 28, 2024
1 parent 33b0f3e commit 2b66d6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grants/components/grant-stat-item/grantee-stat-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const GranteeStatItem = ({ granteeStat, level = 1 }: Props) => {
</Inner>

{hasChildren && (
<div className="-mx-1.5 flex flex-wrap pt-2">
<div className="-mx-1.5 flex flex-wrap gap-y-4 pt-2">
{stats.map((stat) => (
<GranteeStatItem
key={stat.label}
Expand Down Expand Up @@ -57,7 +57,7 @@ export const Container = ({
>
<div
className={cn(
'flex flex-col rounded-20 bg-gradient-to-r from-gradient-1/25 to-gradient-2/0 p-4 lg:bg-white/10 lg:bg-none',
'flex flex-col gap-y-4 rounded-20 bg-gradient-to-r from-gradient-1/25 to-gradient-2/0 p-4 lg:bg-white/10 lg:bg-none',
{
'min-h-[130px]': hasGap,
'min-h-[90px]': !hasGap,
Expand Down

0 comments on commit 2b66d6c

Please sign in to comment.