More space between projects on smaller screens
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 13m6s

This commit is contained in:
2025-08-12 13:16:31 +09:30
parent d22dc9374f
commit 027c7b2abc
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ const tracks = (
<Paragraph>
I've recently been working on a few different projects.</Paragraph
>
<div class="space-y-8">
<div class="space-y-16 md:space-y-8">
{
projects.map((project, index) => {
return (

View File

@@ -16,7 +16,7 @@ const projects = (await getCollection("projects")).sort(
<section id="projects" class="bg-white dark:bg-gray-950">
<div class="mx-auto max-w-4xl px-8 py-16 text-center">
<SectionTitle>Recent Projects</SectionTitle>
<div class="space-y-8">
<div class="space-y-16 md:space-y-8">
{
projects.map((project, index) => {
return (