Merge pull request #3 from ardeay/patch-1

Patch to set default symbol for generic "M" logo when set code is missing
This commit is contained in:
Andrew Gioia 2015-12-16 09:48:38 -05:00
commit 55cdcd282a
2 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,10 @@
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* default if the set does not exist yet, or setcode does not match */
.ss:before {
content: "\e684";
}
/**
* Larger sizes */
.ss-2x {

View File

@ -11,4 +11,8 @@
/* Better font rendering */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* default if the set does not exist yet, or setcode does not match */
&:before {
content: "\e684";
}
}