I want my buttons showing left- and right arrow and NOW text to be as small as possible. How do I do that?
Tiago's answer worked for me.
If you are using variants of mat buttons , raised button for example -
.mat-raised-button {
min-width: 150px;
}
I used this style for making a smaller md-button
button {
min-height: 23px !important;
min-width: 46px !important;
font-size: 10px !important;
line-height: 0px;
}