Ahmed_mag
Ahmed_mag

Reputation: 270

Angular material Tree icon border issue

I am choosing angular material tree component but I can't remove the icon border: enter image description here 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

Answers (1)

envereren
envereren

Reputation: 118

Try to manipulate mat-icon-button's border.

.mat-icon-button {
    border-bottom: unset !important;
}

Upvotes: 1

Related Questions