FransBouma / DocNet

Your friendly static documentation generator, using markdown files to build the content.
http://fransbouma.github.io/DocNet/
248 stars 36 forks source link

Code inside alert elements inherit line height from container DIV #47

Closed FransBouma closed 7 years ago

FransBouma commented 7 years ago

This gives badly formatted code blocks. The fix is:

div.alert > pre > code {
    line-height: initial;
}

being added to theme.css

FransBouma commented 7 years ago

Implemented