deteksi-badan-new/static/fonts/material-design/scss/_functions.scss

17 lines
379 B
SCSS
Raw Normal View History

2024-05-29 03:10:09 +00:00
@function char($character-code) {
@if function-exists("selector-append") {
@return unquote("\"\\#{$character-code}\"");
}
@if "\\#{'x'}" == "\\x" {
@return str-slice("\x", 1, 1) + $character-code;
}
@else {
@return #{"\"\\"}#{$character-code + "\""};
}
}
@function mdi($name) {
@return char(map-get($mdi-icons, $name));
}