diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-08-02 00:55:28 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-08-02 00:55:47 -0400 |
commit | b42a7f87dc8b3805989390addc2bc219b6bdcd9c (patch) | |
tree | 801992ff9dc4c07c539d576586aafc06a82f3f2e /.themes/classic/sass/base | |
parent | 4a181e3a148dc918a56295b1708ed53dc2a7f414 (diff) | |
download | my_new_personal_website-b42a7f87dc8b3805989390addc2bc219b6bdcd9c.tar.xz my_new_personal_website-b42a7f87dc8b3805989390addc2bc219b6bdcd9c.zip |
changed mdash to unicode character to help some users with encoding errors
Diffstat (limited to '.themes/classic/sass/base')
-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 69b92206..05402574 100644 --- a/.themes/classic/sass/base/_typography.scss +++ b/.themes/classic/sass/base/_typography.scss @@ -107,7 +107,7 @@ blockquote { cite { font-style: italic; a { color: $text-color-light !important; word-wrap: break-word; } - &:before { content: '–'; padding:{right: .3em; left: .3em;} color: $text-color-light; } + &:before { content: '\2014'; padding:{right: .3em; left: .3em;} color: $text-color-light; } } @media only screen and (min-width: 992px) { padding-left: 1.5em; |