diff --git a/src/lib/components/LazyImage.svelte b/src/lib/components/LazyImage.svelte
index 2d1c3ba..184deb9 100644
--- a/src/lib/components/LazyImage.svelte
+++ b/src/lib/components/LazyImage.svelte
@@ -36,6 +36,8 @@
load = true;
};
+ // Once the image component is mounted (e.g. when the image has loaded),
+ // transition the opacity to fade-in the image
const img_opacity_handler = (node: HTMLElement) => {
setTimeout(() => (node.style.opacity = "1"), 20);
};
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
index e84e937..7c42a4b 100644
--- a/src/routes/+layout.svelte
+++ b/src/routes/+layout.svelte
@@ -114,7 +114,7 @@
-
+
{#if $drawerStore.id === "menu_drawer"}
@@ -216,7 +216,7 @@