Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2022-07-14 08:50:22 +0300
committerGitHub <noreply@github.com>2022-07-14 08:50:22 +0300
commit6812b9e84d8968b60fc90e8847424512e1a127a5 (patch)
treebac2e2d4abab47a0d62ff11aae67f449a113372a
parentaa1ede051cd0cbc369be31ea097856e673e3573b (diff)
Delete _functions.scssXhmikosR-patch-1
-rw-r--r--docs/assets/scss/_functions.scss10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/assets/scss/_functions.scss b/docs/assets/scss/_functions.scss
deleted file mode 100644
index 55f252da2..000000000
--- a/docs/assets/scss/_functions.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-// See https://codepen.io/kevinweber/pen/dXWoRw
-@function escape-svg($string) {
- @if str-index($string, "data:image/svg+xml") {
- @each $char, $encoded in $escaped-characters {
- $string: str-replace($string, $char, $encoded);
- }
- }
-
- @return $string;
-}