projects
/
experiments
/
scss-responsive-toggle-menu.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add some more comments for consistency with the other comments
[experiments/scss-responsive-toggle-menu.git]
/
scss
/
modules
/
_font-icons.scss
1
// Inspired by http://jaydenseric.com/blog/fun-with-sass-and-font-icons
2
// To be more portable a well defined font-family should be used for icons.
3
4
@function icon($icon) {
5
$icons: (
6
cross: "\2715",
7
hamburger: "\2630",
8
);
9
10
@return map-get($icons, $icon);
11
}