ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: kiwon34 on September 25, 2020, 01:51:48 pm

Title: Vertical align the index column.
Post by: kiwon34 on September 25, 2020, 01:51:48 pm
Hi,

I was wondering if there is a way of vertical align the number of index column(first column).
The row height might change.

https://stackblitz.com/edit/paramquery-demo-numbercol (https://stackblitz.com/edit/paramquery-demo-numbercol)

In the demo, you can see the numbers of first column is aligned to top.
Title: Re: Vertical align the index column.
Post by: paramvir on September 26, 2020, 05:07:58 pm
you can use this css rule:

Code: [Select]
  .pq-grid-number-cell{
    display:flex;
    align-items: center;
    justify-content:center;   
  }

https://stackblitz.com/edit/paramquery-demo-numbercol-2zks3t?file=index.html