角材料定制徽章尺寸

时间:2019-02-27 10:32:49

标签: javascript css angular angular-material

<button class="user_badge" mat-raised-button color="primary" matBadge="1000" matBadgePosition="after" matBadgeColor="accent" MatBadgeSize="large">
  <mat-icon>person</mat-icon>
  User
</button>

我使用的徽章尺寸很大,但是我的一些数据倾向于...我需要增加徽章的尺寸,如何使用CSS来增加徽章的尺寸? reference

感谢任何帮助

2 个答案:

答案 0 :(得分:1)

**您应该使用这种样式,我希望这会起作用**

.mat-badge-content {
width: auto;
display: grid;
min-width: 32px;
min-height: 28px;
text-align: center;
align-items: center;
padding: 5px 3px;
top: -20px;
right: -22px;

}

答案 1 :(得分:0)

您可以为类mat-badge-content更改以下三个属性:

.mat-badge-content {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

在此stackblitz中尝试。