From 7d6062b5eb3ebd2720fe5b836add73f9c88d2589 Mon Sep 17 00:00:00 2001 From: Jake McCrary Date: Sat, 6 Aug 2011 23:19:00 -0500 Subject: [PATCH] fixed @extend for pp, code, and tt. The @extend was extending a non-existant entry. --- .themes/classic/sass/base/_typography.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.themes/classic/sass/base/_typography.scss b/.themes/classic/sass/base/_typography.scss index 0540257..ef83065 100644 --- a/.themes/classic/sass/base/_typography.scss +++ b/.themes/classic/sass/base/_typography.scss @@ -86,7 +86,7 @@ del, s { text-decoration: line-through; } abbr, acronym { border-bottom: 1px dotted; cursor: help; } -pre, code, tt { @extend .mono-font; } +pre, code, tt { @extend .mono; } sub, sup { line-height: 0; }