在 mat-button-toggle 中对齐文本

Allign text in mat-button-toggle

我制作了一个 mat-button-toggle-group,但它有一个保留其旧尺寸的按钮子项。我怎样才能访问它? 我尝试编写此代码,但它不起作用。

mat-button-toggle{
    border: 1px solid #0ea399;
    border-radius: 4px;
    margin-left: 3px;
    margin-right:3px;
    width: 30px;
    height: 30px;
    font-family: 'Nunito Semibold', sans-serif;
    font-size: 14px;
    font-style: bold;
}


.mat-button-toggle-disabled {
    border: 1px solid #c5c0c7;
    background-color: #e1dde5;
}

.center > span {
    line-height: 0px !important;
    text-align: center;
}

您能否尝试使用深层选择器访问其关闭的 dom 内容。

mat-button-toggle ::ng-deep span{ 
   color:green;
   display:inline-block;
   line-height:0px;
}