Skip to content

Commit

Permalink
clean up gaps
Browse files Browse the repository at this point in the history
  • Loading branch information
walteh committed Jul 14, 2024
1 parent ac6531a commit 37d2e7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/UserProfile2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ export default function UserProfile2() {
))}
</div> */}

<div className={`grid grid-cols-2 gap-10 divide-gray-200 border-gray-200 px-4 lg:grid-cols-${stats.length}`}>
<div className={`grid grid-cols-2 gap-4 divide-gray-200 border-gray-200 px-4 lg:grid-cols-${stats.length}`}>
{stats.map((stat) => (
<div key={stat.label}>
<div className=" px-4 py-3 text-center text-sm font-medium bg-gray-100 rounded-xl flex-col flex group ">
<div className=" px-4 py-3 text-center text-sm font-medium bg-gray-100 rounded-xl flex-col flex group hover:bg-gray-200">
<div className=" group-hover:hidden">
<span className="text-md font-mono text-gray-900">{stat.value}</span>
</div>
Expand Down

0 comments on commit 37d2e7e

Please sign in to comment.