Skip to content

Commit

Permalink
Added padding around gray box of ` markdown
Browse files Browse the repository at this point in the history
Added padding of 1px from top and bottom and 5px from left and right
around gray box of single ` markdown.

Signed-off-by: Ondrej <o.jariabka@gmail.com>
  • Loading branch information
vidriduch committed Jun 12, 2017
1 parent 823e1f1 commit 533aea1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions notebook/static/notebook/less/renderedhtml.less
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,21 @@

pre {
margin: 1em 2em;
padding: 0px;
background-color: @body-bg;
}

code {background-color: #eff0f1;}
code {
background-color: #eff0f1;
padding: 1px 5px;
}

pre code {background-color: @body-bg;}

pre, code {
border: 0;
color: @text-color;
font-size: 100%;
padding: 0px;
}

blockquote {margin: 1em 2em;}
Expand Down

0 comments on commit 533aea1

Please sign in to comment.