From 6c73d19de87ce6fb4a823e5bf838504955aa8030 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 09:53:22 +0000 Subject: [PATCH] Fix sidebar overlapping copyright on tiny screens Adds max-height and overflow-y to .sidebar-inner to prevent the sidebar from overflowing its sticky bounds and overlapping the copyright footer on small screens. Co-authored-by: odd-Innocent <248830143+odd-Innocent@users.noreply.github.com> --- .gitignore | 1 + style.css | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2658d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/style.css b/style.css index 256ab56..a722c8a 100644 --- a/style.css +++ b/style.css @@ -78,6 +78,8 @@ ul { .sidebar-inner { position: sticky; top: 60px; + max-height: calc(100vh - 120px); + overflow-y: auto; } .profile-img-container {