Update SCSS, fix bug where code annotations had wrong font.

This commit is contained in:
Robert Lord 2013-10-16 12:45:00 -07:00
parent 35a5d35512
commit 6a22d7c11d

View file

@ -327,7 +327,6 @@ html, body {
float:right; float:right;
clear:right; clear:right;
@extend %code-font;
@include box-sizing(border-box); @include box-sizing(border-box);
@include text-shadow(0px 1px 2px rgba(0,0,0,0.4)); @include text-shadow(0px 1px 2px rgba(0,0,0,0.4));
@ -340,6 +339,10 @@ html, body {
} }
} }
pre {
@extend %code-font;
}
blockquote { blockquote {
&>p { &>p {
background-color: $code-annotation-bg; background-color: $code-annotation-bg;