discourse-math/assets/stylesheets/ext/discourse-chat.scss

13 lines
420 B
SCSS
Raw Permalink Normal View History

.chat-message-text {
// huge selector complexity/specificity makes it hard to do differently
// this is done to limit the size of the chat message after MathJax has rendered
// ultimately we would want a better solution to avoid channel jumpyness
// topics suffer from the same issue
.MJXc-display,
.MathJax_CHTML {
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}
}