Skip to content

Commit f7cd144

Browse files
committed
[CSS] Fix the unicode function
1 parent 43383a5 commit f7cd144

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scss/utilities/_functions.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
//UTF-8 fuckery: https://github.com/sass/sass/issues/1395
55
@function unicode($str) {
6-
@return "#{string.unquote(" \"")}#{string.unquote(string.insert($str, " \\", 1))}#{string.unquote(" \"")}";
6+
@return unquote("\"")+unquote(str-insert($str, "\\", 1))+unquote("\"");
77
}
88

99
@function placeholderBG($color) {

0 commit comments

Comments
 (0)