File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { useWorkspacesData } from "@/hooks/useWorkspacesData";
2
2
import {
3
3
Cell ,
4
4
Column ,
5
+ Heading ,
5
6
LinkButton ,
6
7
Row ,
7
8
Table ,
@@ -16,14 +17,19 @@ export function Workspaces() {
16
17
17
18
return (
18
19
< div >
19
- < h1 className = "text-4xl" > Manage Workspaces</ h1 >
20
+ < Heading level = { 1 } className = "mb-5" >
21
+ Manage Workspaces
22
+ </ Heading >
23
+
20
24
< Table aria-label = "List of workspaces" >
21
25
< Row >
22
26
< TableHeader >
23
- < Column id = "name" isRowHeader >
27
+ < Column id = "name" isRowHeader className = "w-full" >
24
28
Name
25
29
</ Column >
26
- < Column id = "configuration" > Configuration</ Column >
30
+ < Column id = "configuration" className = "w-56" >
31
+ Configuration
32
+ </ Column >
27
33
</ TableHeader >
28
34
</ Row >
29
35
< TableBody >
You can’t perform that action at this time.
0 commit comments