Skip to content

Commit bf775c6

Browse files
DavidLiedleclaude
andcommitted
Fix footer overlap and improve sidebar layout
- Adjusted header height to account for fixed footer - Improved footer positioning with background and border - Reduced padding to prevent text overlap 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent acab6ec commit bf775c6

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

assets/css/custom.css

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ blockquote {
100100
position: fixed;
101101
width: 270px;
102102
overflow-y: auto;
103-
height: 100vh;
104-
padding-bottom: 50px;
103+
height: calc(100vh - 80px);
104+
padding-bottom: 20px;
105105
}
106106

107107
section {
@@ -111,7 +111,16 @@ blockquote {
111111
footer {
112112
position: fixed;
113113
bottom: 0;
114+
left: 0;
114115
width: 270px;
116+
background: white;
117+
border-top: 1px solid #e5e5e5;
118+
padding: 10px 20px;
119+
margin: 0;
120+
}
121+
122+
footer p {
123+
margin: 5px 0;
115124
}
116125
}
117126

0 commit comments

Comments
 (0)