Daemonite / Daemonite/material
Material Icons variants
Open
enhancement
- Dominant language
- CSS
- Stars
- 3.2k
- Forks
- 700
- PR merge metrics
- No merged PRs in 30d
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
``
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'.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.