我使用的是PrimeNG - OrderList,但是按钮太小了
如何调整按钮的大小使其更大?
以下是我的代码
<p-orderList [value]="products" [listStyle]="{'height':'auto'}" header="List of Option Codes"
dragdrop="true">
<ng-template let-product pTemplate="item">
<div class="product-item">
<div class="product-list-detail">
<h5 class="p-mb-2">{{product.optionCode}}</h5>
</div>
</div>
</ng-template>
</p-orderList>
按钮太小了

发布于 2021-04-23 20:47:36
您可以将css添加到.product-item中,如下所示-
.product-item {
font-size: 15px; !important
}https://stackoverflow.com/questions/64309833
复制相似问题