Skip to content

Commit

Permalink
fix: wrap the content in a container
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Jan 27, 2024
1 parent d1409a7 commit 0df424d
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions src/client/routes/public/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,21 @@ const PublicSecrets = () => {
}

return (
<Stack>
<Group position="left">
<Table horizontalSpacing="sm" highlightOnHover>
<thead>
<tr>
<th>Title</th>
<th>Expires</th>
</tr>
</thead>
<tbody>{rows}</tbody>
</Table>
</Group>
</Stack>
<Container>
<Stack>
<Group position="left">
<Table horizontalSpacing="sm" highlightOnHover>
<thead>
<tr>
<th>Title</th>
<th>Expires</th>
</tr>
</thead>
<tbody>{rows}</tbody>
</Table>
</Group>
</Stack>
</Container>
);
};

Expand Down

0 comments on commit 0df424d

Please sign in to comment.