Skip to content

Commit

Permalink
Fix off by 4 error in css
Browse files Browse the repository at this point in the history
  • Loading branch information
Kale-Ko committed Jul 18, 2024
1 parent 9da5d84 commit b70cccd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,19 @@ body {
body.table-of-contents-active #table-of-contents-parent {
display: inline;

width: calc(94vw);
width: calc(94vw - 4px);

margin: 3vh 2vw 3vh 2vw;
padding: 1vh 1vw 1vh 1vw;
}

body.sidebar-active #sidebar-parent {
display: inline;

width: calc(94vw);
width: calc(94vw - 4px);

margin: 3vh 2vw 3vh 2vw;
padding: 1vh 1vw 1vh 1vw;
}

body.sidebar-active #table-of-contents-parent {
Expand Down

0 comments on commit b70cccd

Please sign in to comment.