Skip to content

Commit

Permalink
Bugfix: quote monospace font (#85)
Browse files Browse the repository at this point in the history
For some reason, saying just `monospace` here doesn't seem to work on chrome mobile. Quoting monospace fixes the issue.
  • Loading branch information
tusharsadhwani committed Oct 7, 2021
1 parent fbef031 commit 60d013d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python_docs_theme/static/pydoctheme.css
Expand Up @@ -136,7 +136,7 @@ div.body a:hover {
}

tt, code, pre {
font-family: monospace, sans-serif;
font-family: "monospace", sans-serif;
font-size: 96.5%;
}

Expand Down Expand Up @@ -208,7 +208,7 @@ div.footer a:hover {
}

dl > dt span ~ em {
font-family: monospace, sans-serif;
font-family: "monospace", sans-serif;
}

.toctree-wrapper ul {
Expand Down

0 comments on commit 60d013d

Please sign in to comment.