Skip to content

Material Icons variants #248

Description

@ovicrisan

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'.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions