summaryrefslogtreecommitdiff
path: root/scss/tests
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2014-07-23 09:37:44 -0500
committerGerman M. Bravo <german.mb@deipi.com>2014-07-23 09:56:50 -0500
commitbce3b4a674ef7a40d57e3a36009a7cbd7ffd6694 (patch)
treeda50deaad4e513c7cd298c59c26b80704ba246f9 /scss/tests
parent2e1e10433ad437718e403f87f56d52220af5a754 (diff)
downloadpyscss-bce3b4a674ef7a40d57e3a36009a7cbd7ffd6694.tar.gz
Fonts glyph codes are now just plain hex numbers
Diffstat (limited to 'scss/tests')
-rw-r--r--scss/tests/files/fonts/fonts.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/tests/files/fonts/fonts.scss b/scss/tests/files/fonts/fonts.scss
index 450a847..2791fc9 100644
--- a/scss/tests/files/fonts/fonts.scss
+++ b/scss/tests/files/fonts/fonts.scss
@@ -20,6 +20,6 @@ $font: font-sheet("fontsheet/*.svg", $cache-buster: false);
@each $glyph in glyphs($font) {
.icon-#{$glyph}:before {
- content: glyph-code($font, $glyph);
+ content: "\\" + glyph-code($font, $glyph);
}
}