summaryrefslogtreecommitdiffstats
path: root/build/font/scss.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'build/font/scss.hbs')
-rw-r--r--build/font/scss.hbs16
1 files changed, 11 insertions, 5 deletions
diff --git a/build/font/scss.hbs b/build/font/scss.hbs
index ce0617d..710b45c 100644
--- a/build/font/scss.hbs
+++ b/build/font/scss.hbs
@@ -1,9 +1,15 @@
+/*!
+ * Bootstrap Icons (https://icons.getbootstrap.com/)
+ * Copyright 2019-2023 The Bootstrap Authors
+ * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE.md)
+ */
+
${{ name }}-font: "{{ name }}" !default;
${{ name }}-font-dir: "{{ fontsUrl }}" !default;
-${{ name }}-font-file: #{${{ name }}-font-dir}/#{${{ name }}-font} !default;
+${{ name }}-font-file: "#{${{ name }}-font-dir}/#{${{ name }}-font}" !default;
${{ name }}-font-hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;
${{ name }}-font-src: url("#{${{ name }}-font-file}.woff2?#{${{ name }}-font-hash}") format("woff2"),
- url("#{${{ name }}-font-file}.woff?#{${{ name }}-font-hash}") format("woff") !default;
+ url("#{${{ name }}-font-file}.woff?#{${{ name }}-font-hash}") format("woff") !default;
@font-face {
font-display: block;
@@ -32,6 +38,6 @@ ${{ name }}-map: (
{{/ each }}
);
-{{# each codepoints }}
-.{{ ../prefix }}-{{ @key }}::before { content: map-get(${{ ../name }}-map, "{{ @key }}"); }
-{{/ each }}
+@each $icon, $codepoint in ${{ name }}-map {
+ .{{ prefix }}-#{$icon}::before { content: $codepoint; }
+}