diff --git a/packages/web/components/elements/Table.tsx b/packages/web/components/elements/Table.tsx index 639498755..c44bab7af 100644 --- a/packages/web/components/elements/Table.tsx +++ b/packages/web/components/elements/Table.tsx @@ -30,6 +30,10 @@ const newThead = { background: '#156' } +const StyledTable = styled(ResponsiveTable, { + // Add css here +}) + export function Table(props: TableProps): JSX.Element { const iconColor = isDarkTheme() ? '#D8D7D5' : '#5F5E58' @@ -102,7 +106,7 @@ export function Table(props: TableProps): JSX.Element { }, }} > - + {props.headers.map((header: string, index: number) => ( @@ -182,7 +186,7 @@ export function Table(props: TableProps): JSX.Element { ))} - + )