Skip to content

Commit 8796373

Browse files
committed
Tweak spacing
1 parent 6a1eec0 commit 8796373

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/app/conf/2025/sponsorship.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function Sponsor() {
4040
]}
4141
/>
4242

43-
<div className="mt-8 flex justify-center">
43+
<div className="mt-4 flex justify-center xl:mt-8">
4444
<Button
4545
href="https://events.linuxfoundation.org/sponsor-GraphQLConf-25?utm_source=graphql_conf_2025&utm_medium=website&utm_campaign=sponsor_section"
4646
target="_blank"

src/app/conf/_components/info-grid.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,15 @@ export const InfoGrid: React.FC<InfoGridProps> = ({
1515
}) => (
1616
<section id={id}>
1717
<h1 className="mb-4 typography-h2">{title}</h1>
18-
<p className="mb-8 typography-body-lg">{subtitle}</p>
19-
20-
{/* Horizontal Scrollable Grid */}
18+
<p className="typography-body-lg xl:mb-4">{subtitle}</p>
2119
<div
2220
style={{
2321
scrollSnapType: "x mandatory",
2422
}}
25-
className="scroll-snap-x flex snap-mandatory gap-6 overflow-x-auto lg:grid lg:grid-cols-3 lg:overflow-visible"
23+
className="-mx-4 flex gap-6 overflow-x-auto p-4 lg:grid lg:grid-cols-3 lg:overflow-visible"
2624
>
2725
{listItems.map(({ title, description }, index) => (
28-
<div key={index} className="border border-neu-400 p-3">
26+
<div key={index} className="min-w-64 border border-neu-400 p-3">
2927
<h2 className="mb-2 typography-body-lg">{title}</h2>
3028
<p
3129
className="typography-body-md [&_a]:typography-link"

0 commit comments

Comments
 (0)