We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812537f commit be865bbCopy full SHA for be865bb
scss/icon/_icons.helpers.scss
@@ -90,10 +90,15 @@
90
}
91
92
// Icon meta data mixin
93
-@mixin icon-meta($size: $icon-size, $style: $icon-style, $position: "before") {
+@mixin icon-meta(
94
+ $size: $icon-size,
95
+ $style: $icon-style,
96
+ $position: "before",
97
+ $font-size: $icon-size
98
+) {
99
&::#{$position} {
100
--icon-font-family: "#{"icons-" + $size + "-" + $style}",
101
"missing-icons";
- --icon-font-size: #{to-rem($pxValue: $size)};
102
+ --icon-font-size: #{to-rem($pxValue: $font-size)};
103
104
0 commit comments