icon-font-loader
Version:
A webpack loader to convert svgs into font icons in CSS
24 lines (20 loc) • 515 B
CSS
body.test .des{
color: salmon
}
body .icon-arrow-left:before {
icon-font: url('../../fixtures/icons/arrow-left.svg');
color: red;
}
body span.icon-arrow-slice:before {
font-size:20px;
color: blue;
icon-font: url('../../fixtures/icons/same-name/slice.svg');
}
.icon-arrow-up:before {
icon-font: url('../../fixtures/icons/same-name/arrow-left.svg');
color: green;
}
.icon-arrow-up-1:before {
icon-font: url('../../fixtures/icons/same-name/arrow-right.svg');
color: green;
}