Skip to content

Commit 96b4081

Browse files
committed
visual adjustments
1 parent 65f2070 commit 96b4081

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/components/Workspaces.tsx

+9-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { useWorkspacesData } from "@/hooks/useWorkspacesData";
22
import {
33
Cell,
44
Column,
5+
Heading,
56
LinkButton,
67
Row,
78
Table,
@@ -16,14 +17,19 @@ export function Workspaces() {
1617

1718
return (
1819
<div>
19-
<h1 className="text-4xl">Manage Workspaces</h1>
20+
<Heading level={1} className="mb-5">
21+
Manage Workspaces
22+
</Heading>
23+
2024
<Table aria-label="List of workspaces">
2125
<Row>
2226
<TableHeader>
23-
<Column id="name" isRowHeader>
27+
<Column id="name" isRowHeader className="w-full">
2428
Name
2529
</Column>
26-
<Column id="configuration">Configuration</Column>
30+
<Column id="configuration" className="w-56">
31+
Configuration
32+
</Column>
2733
</TableHeader>
2834
</Row>
2935
<TableBody>

0 commit comments

Comments
 (0)