Reputation: 270
I am choosing angular material tree component but I can't remove the icon border:
I have already imported MatIconModule
import {MatIconModule} from '@angular/material/icon';
import { MatTreeModule} from '@angular/material/tree';
imports: [MatTreeModule, MatIconModule..]
The implementation is exactly the same reported in the attached link. Any help will be appreciated
I'm trying to integrate a new components to into an existing project and it seems that I also cannot use some bootstrap classes, I should find what is blocking styles.
Upvotes: 0
Views: 476
Reputation: 118
Try to manipulate mat-icon-button's border.
.mat-icon-button {
border-bottom: unset !important;
}
Upvotes: 1