I am trying to put justify-content:center
to center the content of the toolbar. On targeting the toolbar I can see the expanded elements and one of them is md-toolbar-row
to which giving justify-content:center
centers the content(centers only while debugging through developer tools).
Here is the plunker:https://plnkr.co/edit/qh3Kqi9GDXIL4H1HTzFu?p=preview
How do I center the content?
Tried following but none helps:
md-toolbar-row{
justify-content:center;
}
.mat-toolbar-row{
justify-content:center;
}
.mat-toolbar .mat-toolbar-row{
justify-content:center;
}