I have one <md-toolbar> and I want to change his height.
<md-toolbar color="primary">Cards</md-toolbar>
I simply tried this in my component.scss:
md-toolbar {
height: 50px !important;
min-height: 50px !important;
}
But the text padding goes wrong (space from top is much bigger than the space from the bottom):
I tried to set the padding and margin to 0 but it didn't make any changes.
My questions
- How I can adjust the annoying space so the text will be vertically centered perfectly?
- Any better way to update the
md-toolbarheight?
