Skip to content

Display Katex spacing #1343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/scss/common/questions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,13 @@ $inline-feedback-padding: 2px;
display: inline;
}

.katex-display.katex-display {
// katex default is margin: 1rem 0, padding: 0. owing to issues with requiring hidden y-overflow, we move some of this
// to padding to "absorb" the overflow and prevent it from being cut off (helps fix latex dropzones in big latex expressions - c.f. matrices)
margin: 0.5rem 0;
padding: 0.5rem 0;
}

// cloze dropdowns inside katex are normally cut off due to content-driven overflows we cannot control easily. this:
// a) enforces that dropdowns are provided $cloze-dropdown-height of space (maximum height before scrolling);
// b) sets the correct overflow behaviour for the parent of the katex containing the dropdown;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.