Skip to content

Commit

Permalink
synchronise table styles
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfauquette committed Jan 8, 2024
1 parent 52b2a71 commit fa1ce87
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/src/modules/components/ApiPage/table/ClassesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
brandingLightTheme as lightTheme,
} from 'docs/src/modules/brandingTheme';
import { getHash } from 'docs/src/modules/components/ApiPage/list/ClassesList';
import StyledTableContainer from 'docs/src/modules/components/ApiPage/table/StyledTableContainer';

const StyledTable = styled('table')(
({ theme }) => ({
Expand Down Expand Up @@ -53,6 +54,7 @@ interface ClassesTableProps {
export default function ClassesTable(props: ClassesTableProps) {
const { classes, componentName, displayClassKeys } = props;
return (
<StyledTableContainer>
<StyledTable>
<thead>
<tr>
Expand Down Expand Up @@ -83,5 +85,6 @@ export default function ClassesTable(props: ClassesTableProps) {
})}
</tbody>
</StyledTable>
</StyledTableContainer>
);
}

0 comments on commit fa1ce87

Please sign in to comment.