vertically center column headers

This commit is contained in:
Collin M. Barrett 2019-09-08 18:33:03 -05:00
parent e7aaae307e
commit 70769d43db
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,5 @@
import './listsTable.css';
import { Table, Tag } from 'antd';
import { PaginationConfig, SorterResult, TableCurrentDataSource } from 'antd/lib/table';
import React, { useEffect, useState } from 'react';

View file

@ -0,0 +1,3 @@
.ant-table-header-column > div {
margin-top: 8px;
}