We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44094b0 commit 10612a0Copy full SHA for 10612a0
src/components/community-stats/CommunityUsersSection.js
@@ -32,15 +32,16 @@ export default function CommunityUsersSection() {
32
<h2 className="heading-600-lg text-center pb-8 md:pb-12">
33
Users of the Community
34
</h2>
35
- <hr className="bg-midnight-500 h-0.5 mb-3 md:mb-[18px]" />
36
<div className="flex flex-col">
37
{cards.map((c, idx) => {
38
const isLast = idx === cards.length - 1;
+ const isFirst = idx === 0;
39
+
40
return (
41
<div key={c.title}>
42
<div
43
className={`flex flex-col md:flex-row py-8 md:py-12 ${
- isLast && "!pb-0"
44
+ (isLast && "!pb-0", isFirst && "!pt-0")
45
}`}
46
>
47
<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