feat: remove scroll animations

This commit is contained in:
Stefan Imhoff
2026-01-23 12:06:44 +01:00
committed by Stefan Imhoff
parent 61c722c84f
commit a05dec6363
22 changed files with 7 additions and 41 deletions

View File

@@ -62,7 +62,6 @@ const description = 'This is a collection of AI art pieces Ive created with S
'md:col-span-6 md:row-span-6':
data.images[0].aspectRatio === 1 && data.coverSize === 'large',
},
'slide',
]}
>
<Link title={data.title} href={`/ai-art/${slug}/`}>

View File

@@ -66,7 +66,7 @@ rssPosts.sort(sortMarkdownByDate);
</article>
<article
class="slide col-start-2 col-end-18 row-start-4 md:col-start-3 md:col-end-17 md:row-start-3 xl:col-start-5 xl:col-end-15"
class="col-start-2 col-end-18 row-start-4 md:col-start-3 md:col-end-17 md:row-start-3 xl:col-start-5 xl:col-end-15"
>
<Headline>What I Do</Headline>
<div class="columns-1 gap-[2.775vw] mbe-10 md:columns-2 [&_p:last-of-type]:mbe-0">
@@ -76,7 +76,7 @@ rssPosts.sort(sortMarkdownByDate);
</article>
<article
class="slide col-start-2 col-end-18 md:col-start-6 md:col-end-14 xl:col-start-7 xl:col-end-13"
class="col-start-2 col-end-18 md:col-start-6 md:col-end-14 xl:col-start-7 xl:col-end-13"
>
<Headline>Journal</Headline>
<Journal components={mapping} />
@@ -84,7 +84,7 @@ rssPosts.sort(sortMarkdownByDate);
</article>
<article
class="slide min-[1794px]:[&_li:block col-start-2 col-end-18 grid w-full grid-cols-18 gap-y-gap mbe-12 min-[1097px]:[&_li:nth-child(n+5)]:hidden min-[1410px]:[&_li:nth-child(n+5)]:block min-[1411px]:[&_li:nth-child(n+6)]:hidden min-[1793px]:[&_li:nth-child(n+6)]:block"
class="min-[1794px]:[&_li:block col-start-2 col-end-18 grid w-full grid-cols-18 gap-y-gap mbe-12 min-[1097px]:[&_li:nth-child(n+5)]:hidden min-[1410px]:[&_li:nth-child(n+5)]:block min-[1411px]:[&_li:nth-child(n+6)]:hidden min-[1793px]:[&_li:nth-child(n+6)]:block"
data-pagefind-ignore
aria-label="Latest essays"
>

View File

@@ -55,7 +55,6 @@ const description = 'This is a collection of Sketchnotes Ive drawn.';
'md:col-span-5 md:row-span-6':
data.images[0].aspectRatio < 1 && data.coverSize === 'large',
},
'slide',
]}
>
<Link title={data.title} href={`/sketchnotes/${slug}/`}>

View File

@@ -39,7 +39,7 @@ const description =
<ColorStack>
{
colors.map(({ name, description, color }) => (
<div class="slide">
<div>
<ColorSwatch color={color} title={name} description={description} />
</div>
))