1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

All: Fix #764: Fix equation tag positioning

This commit is contained in:
Laurent Cozic
2018-09-10 19:19:33 +01:00
parent 756f3e627c
commit 563f43168b

View File

@ -571,6 +571,15 @@ class MdToHtml {
padding-left: .2em;
}
/*
This is to fix https://github.com/laurent22/joplin/issues/764
Without this, the tag attached to an equation float at an absoluate position of the page,
instead of a position relative to the container.
*/
.katex-display>.katex>.katex-html {
position: relative;
}
@media print {
body {
height: auto !important;