mazdik / ng-mazdik

Angular UI component library
https://mazdik.github.io/ng-mazdik
MIT License
89 stars 34 forks source link

headerRowHeight css can setting to 20px from 40px? #21

Closed huangwei16800 closed 5 years ago

huangwei16800 commented 5 years ago

usually datable display data, RowHeight no need too high. i had modify min-height to 25px. and rowHeight i want to setting to 25 ,but char not center align .datatable-header-row { min-height: 20px; }

huangwei16800 commented 5 years ago

pro1

mazdik commented 5 years ago

removed min-height

  settings = new Settings({
    headerRowHeight: 20, // class .fixed-header will be added
    rowHeight: 20
  });

or

.datatable-header-row {
min-height: 20px;
}

and

  settings = new Settings({
    rowHeight: 20
  });
huangwei16800 commented 5 years ago

thank your! i will use ng-crud-table in my project,