Commit 3881044f authored by Robert Knight's avatar Robert Knight

Fix overlapping text in headings in annotation bodies

Parent elements of annotation cards set line heights to absolute pixel
values. Annotation card headings then inherit this and as a result,
their line height is too small for the font size.

We ought to reconsider the way line heights are set elsewhere in the
app, but resetting the line height in the `styled-text` mixin ensures
that annotation body styles are protected from whatever the parent
elements do with it.
parent d86d2ba1
@mixin styled-text() { @mixin styled-text() {
// Reset the line-height in case any parent elements have set it.
line-height: normal;
h1, h2, h3, h4, h5, h6, p, ol, ul, img, pre, blockquote { h1, h2, h3, h4, h5, h6, p, ol, ul, img, pre, blockquote {
margin: .618em 0; margin: .618em 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment