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

_functions.scss « scss « assets « docs - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55f252da26ffef59652294e7cc4a801dcc2d0517 (plain)
1
2
3
4
5
6
7
8
9
10
// 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;
}