diff options
author | Jake McCrary <jake@jakemccrary.com> | 2011-08-06 23:19:00 -0500 |
---|---|---|
committer | Jake McCrary <jake@jakemccrary.com> | 2011-08-06 23:19:00 -0500 |
commit | 7d6062b5eb3ebd2720fe5b836add73f9c88d2589 (patch) | |
tree | f4c8986f545423de66f777c7f19ef4336fbc609f | |
parent | 3a599d415932af8ff336ce0632e309f37d5747f4 (diff) | |
download | my_new_personal_website-7d6062b5eb3ebd2720fe5b836add73f9c88d2589.tar.xz my_new_personal_website-7d6062b5eb3ebd2720fe5b836add73f9c88d2589.zip |
fixed @extend for pp, code, and tt. The @extend was extending a non-existant entry.
-rw-r--r-- | .themes/classic/sass/base/_typography.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/sass/base/_typography.scss b/.themes/classic/sass/base/_typography.scss index 05402574..ef83065b 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; } |