Is it possible to make an md-button smaller?

前端 未结 8 1370
逝去的感伤
逝去的感伤 2021-01-03 18:18

I want my buttons showing left- and right arrow and NOW text to be as small as possible. How do I do that?

相关标签:
8条回答
  • 2021-01-03 19:19

    Tiago's answer worked for me.

    If you are using variants of mat buttons , raised button for example -

        .mat-raised-button {
            min-width: 150px;
        }
    
    0 讨论(0)
  • 2021-01-03 19:22

    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; 
    }
    
    0 讨论(0)
提交回复
热议问题