aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap-icons/build/font/css.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/twbs/bootstrap-icons/build/font/css.hbs')
-rw-r--r--vendor/twbs/bootstrap-icons/build/font/css.hbs30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap-icons/build/font/css.hbs b/vendor/twbs/bootstrap-icons/build/font/css.hbs
new file mode 100644
index 000000000..e3271ed45
--- /dev/null
+++ b/vendor/twbs/bootstrap-icons/build/font/css.hbs
@@ -0,0 +1,30 @@
+/*!
+ * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
+ * Copyright 2019-2024 The Bootstrap Authors
+ * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
+ */
+
+@font-face {
+ font-display: block;
+ font-family: "{{ name }}";
+ src: {{{ fontSrc }}};
+}
+
+.{{ prefix }}::before,
+[class^="{{ prefix }}-"]::before,
+[class*=" {{ prefix }}-"]::before {
+ display: inline-block;
+ font-family: {{ name }} !important;
+ font-style: normal;
+ font-weight: normal !important;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ vertical-align: -.125em;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+{{# each codepoints }}
+.{{ ../prefix }}-{{ @key }}::before { content: "\\{{ codepoint this }}"; }
+{{/ each }}