我正在使用angular calendar https://github.com/mattlewis92/angular-calendar,并且我正在尝试从日历中删除事件总数。
我在我的组件文件上设置了encapsulation:ViewEncapsulation.None,我的css文件看起来是:
.cal-day-badge{
display: none;
}但是css并没有被覆盖。我在.cal-month-view上试过了,它工作得很好,但在.cal-day-badge上不行
发布于 2021-02-05 18:21:17
::ng-deep .cal-day-badge {
display: none !important;
}https://stackoverflow.com/questions/62060152
复制相似问题