Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/styles/post-template.less
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ body {
}

#left-bar {
position: fixed;
overflow-y: auto;
height: 100%;
box-sizing: border-box;
display: table-cell;
background-color: @leftBarBackgroundColor;
Expand All @@ -63,6 +66,8 @@ body {
padding: 10px 35px 35px 35px;

@media (max-width: @doubleColumnMaxWidth) {
position: static;
height: auto;
display: block;
width: 100%;
padding: 0px 20px 0px 20px;
Expand Down Expand Up @@ -276,7 +281,7 @@ body {

#content {
display: table-cell;
padding: 10px 35px 35px 50px;
padding: 10px 35px 35px 375px;
color: @contentTextColor;

@media (max-width: @doubleColumnMaxWidth) {
Expand Down