Skip to content

Commit

Permalink
Avoid using container-fluid on the body if the screen is larger than …
Browse files Browse the repository at this point in the history
…1200px (apidoc#846)

* Avoid container-fluid on devices larger than 1200px
  • Loading branch information
AlexNeises authored Feb 6, 2020
1 parent 41ad2e9 commit 7838364
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions template/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ body, p, a, div, th, td {
font-size: 16px;
}

@media (min-width: 1200px) {
body.container-fluid {
padding-right: 0px;
padding-left: 0px;
margin-right: 0px;
margin-left: 0px;
}
}

td.code {
font-size: 14px;
font-family: "Source Code Pro", monospace;
Expand Down

0 comments on commit 7838364

Please sign in to comment.