Skip to content

Commit

Permalink
Correct the body width to match GitHub (#44)
Browse files Browse the repository at this point in the history
The body of the page content was rendering at 890px while on GitHub the
body width was 830px.

Considering the padding, it appears that reducing the max-width on the
html from 980px to 920px should resolve this.

Signed-off-by: Josh Bainbridge <[email protected]>
  • Loading branch information
joshbainbridge authored May 31, 2023
1 parent a0e1709 commit 3142f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
max-width: 920px;
margin: 0 auto;
padding: 45px;
}
Expand Down

0 comments on commit 3142f67

Please sign in to comment.