Skip to content

Commit e4d42bf

Browse files
authored
Fix solved table sizing (#75)
1 parent 28e1e09 commit e4d42bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/SolvedTable/SolvedTable.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const SolvedTable = (props: TableProp) => {
6060
boxShadow: "xl",
6161
}}
6262
width="100%"
63-
sx={{ tableLayout: "fixed" }}
63+
sx={{ tableLayout: "auto" }}
6464
>
6565
<TableCaption>
6666
<Center>

frontend/src/pages/ProfilePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function ProfilePage() {
5959
)}
6060
</Flex>
6161
</Box>
62-
<Box w="55%">
62+
<Box w="65%">
6363
<ProgressBar />
6464
<SolvedTable pageSize={3} />
6565
</Box>

0 commit comments

Comments
 (0)