11 lines
211 B
SCSS
11 lines
211 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;
|
|
}
|