|
@@ -31,7 +31,7 @@ const Table: React.FC<TableProps> = ({
|
|
|
<StyledTable {...getTableProps()}>
|
|
<StyledTable {...getTableProps()}>
|
|
|
<StyledTHead>
|
|
<StyledTHead>
|
|
|
{headerGroups.map((headerGroup) => (
|
|
{headerGroups.map((headerGroup) => (
|
|
|
- <StyledTr {...headerGroup.getHeaderGroupProps()}>
|
|
|
|
|
|
|
+ <StyledTr {...headerGroup.getHeaderGroupProps()} disableHover={true}>
|
|
|
{headerGroup.headers.map((column) => (
|
|
{headerGroup.headers.map((column) => (
|
|
|
<StyledTh {...column.getHeaderProps()}>
|
|
<StyledTh {...column.getHeaderProps()}>
|
|
|
{column.render("Header")}
|
|
{column.render("Header")}
|
|
@@ -83,7 +83,6 @@ export const StyledTr = styled.tr`
|
|
|
export const StyledTd = styled.td`
|
|
export const StyledTd = styled.td`
|
|
|
font-size: 13px;
|
|
font-size: 13px;
|
|
|
color: #ffffff;
|
|
color: #ffffff;
|
|
|
- padding-left: 32px;
|
|
|
|
|
`;
|
|
`;
|
|
|
|
|
|
|
|
export const StyledTHead = styled.thead`
|
|
export const StyledTHead = styled.thead`
|
|
@@ -95,14 +94,10 @@ export const StyledTh = styled.th`
|
|
|
font-size: 13px;
|
|
font-size: 13px;
|
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
|
color: #aaaabb;
|
|
color: #aaaabb;
|
|
|
- padding-left: 32px;
|
|
|
|
|
`;
|
|
`;
|
|
|
|
|
|
|
|
export const StyledTable = styled.table`
|
|
export const StyledTable = styled.table`
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
- margin-top: 5px;
|
|
|
|
|
- padding-left: 32px;
|
|
|
|
|
- padding-bottom: 20px;
|
|
|
|
|
min-width: 500px;
|
|
min-width: 500px;
|
|
|
border-collapse: collapse;
|
|
border-collapse: collapse;
|
|
|
`;
|
|
`;
|