Styling mat-radio-button in Angular Material

后端 未结 4 1378
野性不改
野性不改 2021-01-12 00:06

I have just started using the Angular Material theme within my Angular app.

I make use of some radio buttons but want to style them so that they are smaller than usu

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-12 00:20

    I think, this should be enough:

    .mat-radio-container {
        transform: scale(0.85);
    }
    

    Choose the number in the scale according to your needs.

提交回复
热议问题