diff --git a/src/components/JournalList.astro b/src/components/JournalList.astro
index a2f5a15..7514cd3 100644
--- a/src/components/JournalList.astro
+++ b/src/components/JournalList.astro
@@ -18,7 +18,7 @@ const { entries } = Astro.props;
>
{
entries.map(({ slug, data }) => (
-
+
diff --git a/src/pages/index.astro b/src/pages/index.astro
index b42ad05..0b0ee79 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -66,7 +66,7 @@ rssPosts.sort(sortMarkdownByDate);
What I Do
@@ -76,7 +76,7 @@ rssPosts.sort(sortMarkdownByDate);
Journal
@@ -84,7 +84,7 @@ rssPosts.sort(sortMarkdownByDate);
diff --git a/src/pages/sketchnotes.astro b/src/pages/sketchnotes.astro
index be538cc..a859f7f 100644
--- a/src/pages/sketchnotes.astro
+++ b/src/pages/sketchnotes.astro
@@ -55,7 +55,6 @@ const description = 'This is a collection of Sketchnotes I’ve drawn.';
'md:col-span-5 md:row-span-6':
data.images[0].aspectRatio < 1 && data.coverSize === 'large',
},
- 'slide',
]}
>
diff --git a/src/pages/traditional-colors-of-japan.astro b/src/pages/traditional-colors-of-japan.astro
index 736a952..fb4f05e 100644
--- a/src/pages/traditional-colors-of-japan.astro
+++ b/src/pages/traditional-colors-of-japan.astro
@@ -39,7 +39,7 @@ const description =
{
colors.map(({ name, description, color }) => (
-
+
))
diff --git a/src/styles/global.css b/src/styles/global.css
index 1a03aba..7ee0466 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -268,22 +268,4 @@
figure > .figure-content > lite-youtube {
@apply mbe-0;
}
-
- @keyframes slide-fade-in {
- from {
- opacity: 0;
- box-shadow: none;
- transform: scale(0.8) translateY(15vh);
- }
- }
-
- .slide {
- @media (prefers-reduced-motion: no-preference) {
- @supports (animation-timeline: view()) {
- animation: slide-fade-in both;
- animation-timeline: view();
- animation-range: contain -40% contain 50%;
- }
- }
- }
}