sass example.

This commit is contained in:
Austin Andrews
2015-07-27 17:24:02 -05:00
parent 7a4bec8c2d
commit 4bfe4da694

View File

@@ -92,6 +92,20 @@ svg.example:hover path {
}
```
## SASS
Use the characters in custom SASS use the method below.
```
@function mdi($name) {
@return content: char(nth($hexes, index($names, $name)));
}
.custom:before {
font: normal normal normal 24px/1 MaterialDesignIcons;
mdi('account');
}
```
## Android (Vector Drawable)
Android uses the Vector Drawable format that is similar to SVG. Right click any icon to download or view the vector drawable syntax.