From d657d88e9467d69452dd7f04cb143d29f5b59737 Mon Sep 17 00:00:00 2001 From: June Date: Fri, 14 Nov 2025 12:26:40 +1300 Subject: [PATCH] Refactored sidebar layout to have better control on design; made sidebar sticky --- web/src/components/sidebar.astro | 5 +---- web/src/layout/Base.astro | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/web/src/components/sidebar.astro b/web/src/components/sidebar.astro index c6ce159..8566aa8 100644 --- a/web/src/components/sidebar.astro +++ b/web/src/components/sidebar.astro @@ -3,13 +3,10 @@ import Navbar from "src/components/index/navbar.astro" import Footer from "./footer.astro" --- -
+
breadone dot net -
- -
\ No newline at end of file diff --git a/web/src/layout/Base.astro b/web/src/layout/Base.astro index 5cb87d7..c6da82d 100644 --- a/web/src/layout/Base.astro +++ b/web/src/layout/Base.astro @@ -1,5 +1,7 @@ --- import BaseHead from "./BaseHead.astro" +import Sidebar from "@components/sidebar" +import Footer from "@components/footer" --- @@ -9,8 +11,18 @@ import BaseHead from "./BaseHead.astro" -
- +
+
+ + + + +
+
+ +
+ +
\ No newline at end of file