40 lines
487 B
SCSS
40 lines
487 B
SCSS
/* Icon */
|
|
|
|
.icon {
|
|
@include icon;
|
|
border-bottom: none;
|
|
position: relative;
|
|
|
|
> .label {
|
|
display: none;
|
|
}
|
|
|
|
&.solid {
|
|
&:before {
|
|
font-weight: 900;
|
|
}
|
|
}
|
|
|
|
&.brands {
|
|
&:before {
|
|
font-family: 'Font Awesome 5 Brands';
|
|
}
|
|
}
|
|
|
|
&.style1 {
|
|
color: _palette(accent1, fg-light);
|
|
}
|
|
|
|
&.style2 {
|
|
color: _palette(accent2, fg-light);
|
|
}
|
|
|
|
&.style3 {
|
|
color: _palette(accent3, fg-light);
|
|
}
|
|
|
|
&.style4 {
|
|
color: _palette(accent4, fg-light);
|
|
}
|
|
}
|