Skip to content

Commit 10612a0

Browse files
committed
Remove the divider
1 parent 44094b0 commit 10612a0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/community-stats/CommunityUsersSection.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,16 @@ export default function CommunityUsersSection() {
3232
<h2 className="heading-600-lg text-center pb-8 md:pb-12">
3333
Users of the Community
3434
</h2>
35-
<hr className="bg-midnight-500 h-0.5 mb-3 md:mb-[18px]" />
3635
<div className="flex flex-col">
3736
{cards.map((c, idx) => {
3837
const isLast = idx === cards.length - 1;
38+
const isFirst = idx === 0;
39+
3940
return (
4041
<div key={c.title}>
4142
<div
4243
className={`flex flex-col md:flex-row py-8 md:py-12 ${
43-
isLast && "!pb-0"
44+
(isLast && "!pb-0", isFirst && "!pt-0")
4445
}`}
4546
>
4647
<div className="flex items-center justify-center h-[200px] bg-blue-700 rounded-t-20 md:h-auto md:w-1/2 md:rounded-l-20 md:rounded-tr-none">

0 commit comments

Comments
 (0)