Angular Material icons not working

前端 未结 14 2236
走了就别回头了
走了就别回头了 2020-12-23 20:27

I\'ve installed Material for angular,

I\'ve imported on my app module MatIconModule (with import { MatIconModule } from \'@angular/material/icon\';)

14条回答
  •  误落风尘
    2020-12-23 20:58

    In my case, there was a style applied that overrides font family. So, I added font family style explicitly like this:

    .material-icons{
        font-family: 'Material Icons' !important;
    }
    

提交回复
热议问题