mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2024-11-23 10:21:46 +01:00
feat(article): make long KaTeX equations scrollable in the x-axis (#706)
* Make long KaTeX equations scrollable in the x-axis Suggested from: https://katex.org/docs/issues.html, I have tested it adding a long equation and activating a phone user agent. * refactor: move KaTeX style to article.scss
This commit is contained in:
parent
86314608e3
commit
30e033c660
1 changed files with 6 additions and 0 deletions
|
@ -412,4 +412,10 @@
|
|||
margin-right: calc((var(--card-padding)) * -1);
|
||||
width: calc(100% + var(--card-padding) * 2);
|
||||
}
|
||||
|
||||
/// Make long KaTeX equations scrollable in the x-axis
|
||||
.katex-display > .katex {
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue