gmostert / ng2-breadcrumb

This is an angular 2 component that creates a breadcrumb trail. It hooks into the angular2/router, to dynamically build up the crumb trail once a component is routed to.
MIT License
102 stars 81 forks source link

ng2-breadcrumb integration with material design #72

Closed majdix closed 7 years ago

majdix commented 7 years ago

I'm trying to use this module within my angular 4 project, as i see this is by default made to work with bootstrap . Is there any possibilty to use material design template in the breadcrumb?

hquangthinh commented 7 years ago

Hi @majdix set [useBootstrap]="false" and write some custom material style to style your breadcrumb. I'm using that approach in my current project

majdix commented 7 years ago

@hquangthinh thanks for your answer, well i resolved it by making a custom component extending the breadcrumb component and overrided the template. I think it's a better solution , i could rewrite the whole template and customize it as i want.