如何减少ngx数据表的标题字体大小

问题描述 投票:0回答:1

我想减少ngx-datatable的头字体大小,而不会影响项目中的其他ngx-datatable。

angular material-design ngx-datatable
1个回答
0
投票

覆盖默认的CSS

HTML:

<div class="custom-datatable">
  <ngx-datatable></ngx-datatable>
</div>

CSS:

.custom-datatable ngx-datatable.material .datatable-header .datatable-header-cell {
    font-size: 10px !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.