Is it possible to make an md-button smaller?

前端 未结 8 1367
逝去的感伤
逝去的感伤 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:08

    Add the following to your styles:

    .md-button {
        min-width: 1%;
    }
    

    Alternatively, use a custom class:

    .md-button.md-small {
        min-width: 1%;
    }
    

    Or, in Angular Material 2:

    .mat-button.mat-small {
        min-width: 1%;
    }
    

提交回复
热议问题