-
Notifications
You must be signed in to change notification settings - Fork 709
Open
Labels
Milestone
Description
When using variants of Material Icons, like Outlined for instance, icons won't work because explicitly references 'Material Icons' family font:
.custom-checkbox .custom-control-label::after {
...
font-family: 'Material Icons';
... }
So, when including
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
you should use:
.custom-checkbox .custom-control-label::after {
...
font-family: 'Material Icons', 'Material Icons Outlined';
... }
My proposal is to include all possible variants of https://material.io/resources/icons/ in 'font-family'.