Is it possible to make an md-button smaller?

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

    You could use css transform: scale(). You have to play with margins a little bit, but it isn't much code and you can go smaller or bigger pretty easily.

    .shrink-2x {
         transform: scale(0.5);
    }
    
    .enlarge-2x {
         transform: scale(1.5);
    }
    

    Example

提交回复
热议问题