diff --git a/services/web/frontend/stylesheets/bootstrap-5/pages/all.scss b/services/web/frontend/stylesheets/bootstrap-5/pages/all.scss index 1179c038a8..1e97a1f67e 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/pages/all.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/pages/all.scss @@ -17,6 +17,7 @@ @import 'editor/review-panel'; @import 'editor/chat'; @import 'editor/history'; +@import 'editor/math-preview'; @import 'subscription'; @import 'editor/pdf'; @import 'editor/compile-button'; diff --git a/services/web/frontend/stylesheets/bootstrap-5/pages/editor/math-preview.scss b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/math-preview.scss new file mode 100644 index 0000000000..5315ecfcfb --- /dev/null +++ b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/math-preview.scss @@ -0,0 +1,9 @@ +.ol-cm-math-tooltip { + border-radius: var(--border-radius-base); + max-height: 400px; + max-width: 800px; + overflow: auto; + padding: var(--spacing-04); + display: flex; + gap: var(--spacing-04); +}