icons fix

This commit is contained in:
Elisabeth Dickinson 2021-03-04 16:47:22 +01:00
parent b22c8da061
commit e74e754ace
7 changed files with 15 additions and 7 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 263 KiB

After

Width:  |  Height:  |  Size: 263 KiB

View File

@ -422,4 +422,10 @@
&:before {
content: $i-edit;
}
}
.i-close {
&:before {
content: $i-close;
}
}

View File

@ -87,12 +87,12 @@
//-- add icon
@mixin inline-icomoon($icon-content, $margin) {
@mixin inline-icomoon($icon-content, $margin, $v-align: middle, $font-size: 1.5rem, $font-weight: $fw_regular) {
content: '#{$icon-content}';
font-family: '#{$icomoon-font-family}' !important;
@include font-size(1.5rem);
font-weight: $fw_regular;
vertical-align: middle;
@include font-size($font-size);
font-weight: $font-weight;
vertical-align: $v-align;
margin: $margin;
}

View File

@ -160,6 +160,7 @@ $i-exercise: "\e918";
$i-lightbulb: "\e921";
$i-check: "\e909";
$i-edit: "\e932";
$i-close: "\e933";
//------------------------------------------------------------------------------