Skip to content

Commit

Permalink
fix katex block overflow on narrow devices
Browse files Browse the repository at this point in the history
  • Loading branch information
queensferryme committed Jul 28, 2020
1 parent 8f23570 commit c5afd00
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<style>
.katex-display > .katex {
max-width: 100%;
overflow-x: auto;
overflow-y: hidden;
}
</style>
</head>
<body>
<div id="app"></div>
Expand Down

0 comments on commit c5afd00

Please sign in to comment.