diff --git a/README.md b/README.md index 722bc3e..65b80dd 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Equivalent to: ```css .my-product .my-icon::before { - content: '\e004'; + content: '\e000'; font: normal normal normal 14px/1 sharkicons; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; @@ -124,7 +124,7 @@ Equivalent to: ```css .my-product .my-icon::after { - content: '\e004'; + content: '\e000'; font: normal normal normal 14px/1 sharkicons; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; @@ -135,3 +135,13 @@ Equivalent to: text-transform: none; } ``` + +--- + +## Mapping An Icon Char via SCSS + +```scss +.my-product .my-icon:hover::after { + content: map-get($sharkicons, broom); +} +```