Change material2 md-height of toolbar
I have one <md-toolbar>
and I want to change its height.
<md-toolbar color="primary">Cards</md-toolbar>
I just tried this in mine component.scss
:
md-toolbar {
height: 50px !important;
min-height: 50px !important;
}
But the text is filling incorrectly (there is more space at the top than at the bottom):
I tried installing padding
and margin
on 0
, but it didn't make any changes.
My questions
- How can I adjust the annoying space so that the text is perfectly vertical?
- What's the best way to update the height
md-toolbar
?
+3
source to share