From 54d5a7732956f3b073cc875d0f9abc1e3e0f7c1f Mon Sep 17 00:00:00 2001 From: Caleb Braaten Date: Tue, 20 Jan 2026 13:47:55 -0800 Subject: [PATCH] Move scrollbar into Post Archive component instead of aside --- src/frontend/components/post-archive.tsx | 68 ++++++++++++------------ src/frontend/styles.css | 28 +++++++++- 2 files changed, 62 insertions(+), 34 deletions(-) diff --git a/src/frontend/components/post-archive.tsx b/src/frontend/components/post-archive.tsx index 3ef0b98..6ff0c03 100644 --- a/src/frontend/components/post-archive.tsx +++ b/src/frontend/components/post-archive.tsx @@ -39,39 +39,41 @@ export function PostArchive() { return (

Posts

- +
+
    + {archiveData.map((yearData) => ( +
  • +
    + + {yearData.year} + {yearData.count} +
    +
    +
      + {yearData.months.map((monthData) => ( +
    • +
      + + {monthData.name} + {monthData.count} +
      +
      +
        + {monthData.posts.map((post) => ( +
      • + {post.title} +
      • + ))} +
      +
      +
    • + ))} +
    +
    +
  • + ))} +
+