Is it possible to make an md-button smaller?

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

    I'm using https://github.com/angular/material2

    this creates smaller mini-fab.

    .del {
      width: 30px;
      height: 30px;
    }
    
    .del .mat-icon {
        padding: 4px 0;
        line-height: 22px;
    }

提交回复
热议问题