From b4be776c9b8f75dff603d2995e51232f5ee2028e Mon Sep 17 00:00:00 2001 From: Astra Date: Sun, 11 May 2025 00:48:32 +0900 Subject: [PATCH] Nightmare scroll code fixes --- src/App.svelte | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index 43b87bd..c6e7534 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -57,12 +57,7 @@ {#each posts as postObject} {/each} - {#if screen.availWidth > 600} - - {/if} - {#if screen.availWidth <= 600} - - {/if} +
@@ -83,9 +78,9 @@ color: var(--text-color); } #Feed { + overflow-y: scroll; width: 65%; height: 100vh; - overflow-y: scroll; padding: 20px; padding-bottom: 0; padding-top: 0; @@ -143,13 +138,12 @@ height: auto; } #Feed { - overflow-y: scroll; width: 95%; margin: 0px; margin-left: 10%; margin-right: 10%; padding: 0px; - height: auto; + overflow-y: visible; } #spacer {