Skip to content

Commit

Permalink
[Fix] More accurate width of markdown box
Browse files Browse the repository at this point in the history
  • Loading branch information
ptkdev committed Feb 4, 2019
1 parent ae37d80 commit 6b16acc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/templates/markserv.css
@@ -1,12 +1,18 @@
body {
width: 45em;
width: 978px;
margin: 16px auto;
}

body .markdown-body {
padding: 30px;
}

@media screen and (max-width: 1024px) {
body {
width: 98%;
}
}

@media screen and (min-width: 768px) {
body {
border: 1px solid #ddd;
Expand Down

0 comments on commit 6b16acc

Please sign in to comment.