10 lines
198 B
SCSS
10 lines
198 B
SCSS
@each $key, $value in $mdi-icons {
|
|
.#{$mdi-css-prefix}-#{$key}:before {
|
|
content: char($value);
|
|
}
|
|
}
|
|
|
|
.#{$mdi-css-prefix}-blank:before {
|
|
content: "\F68C";
|
|
visibility: hidden;
|
|
} |