Skip to content

Commit a9cf139

Browse files
author
AMJones
committed
Fixes invalid variable name.
1 parent 27ea1aa commit a9cf139

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scss/_header.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ header {
8181
@if component("icons") {
8282
//noinspection SassScssUnresolvedVariable
8383
> .#{$icon-css-prefix} {
84-
font-size: floor((4 / 3) * $icon-font-size-base);
84+
font-size: floor((4 / 3) * $icon-font-size);
8585
// Must go with $navbar-height rather than the Font Awesome recommended height due to IE10/11 silliness that
8686
// has the icons jumping around on mouseover. Could not find documented instances of this issue.
8787
line-height: $navbar-height;
8888
}
8989
//noinspection SassScssUnresolvedVariable
9090
> svg.#{$icon-css-prefix} {
91-
width: floor((4 / 3) * $icon-font-size-base);
92-
height: floor((4 / 3) * $icon-font-size-base);
91+
width: floor((4 / 3) * $icon-font-size);
92+
height: floor((4 / 3) * $icon-font-size);
9393
}
9494
//noinspection SassScssUnresolvedVariable
9595
> .#{$icon-css-prefix}-caret-down {

0 commit comments

Comments
 (0)