mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 10:35:36 +08:00
12 lines
420 B
SCSS
Vendored
12 lines
420 B
SCSS
Vendored
.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;
|
|
}
|
|
}
|