aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/abstracts/functions
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/abstracts/functions')
-rw-r--r--src/styles/abstracts/functions/_encode.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/styles/abstracts/functions/_encode.scss b/src/styles/abstracts/functions/_encode.scss
index 4350185..388d106 100644
--- a/src/styles/abstracts/functions/_encode.scss
+++ b/src/styles/abstracts/functions/_encode.scss
@@ -4,7 +4,7 @@
/// @param {String} $svg A complete svg (`<svg>...</svg>`).
/// @return The encoded svg, ready to use for background-image.
@function encode-svg($svg) {
- $svg-encoding: (("<", "%3C"), (">", "%3E"), ("#", "%23"));
+ $svg-encoding: (('"', "'"), ("<", "%3C"), (">", "%3E"), ("#", "%23"));
@each $char, $encoded in $svg-encoding {
$svg: fun.str-replace($svg, $char, $encoded);