Skip to content

Commit 70d334e

Browse files
committed
Use new app templates container
1 parent 8651016 commit 70d334e

File tree

4 files changed

+419
-37
lines changed

4 files changed

+419
-37
lines changed

llmstack/client/src/components/apps/AppList.jsx

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -152,20 +152,18 @@ export function AppList() {
152152
};
153153

154154
return (
155-
<Paper sx={{ width: "100%" }}>
155+
<Paper sx={{ width: "100%", pt: 2 }}>
156156
<TableContainer>
157157
<Table>
158158
<TableHead>
159-
<TableRow sx={{ backgroundColor: "#f0f7ff" }}>
160-
<TableCell sx={{ padding: "3px 16px" }}>App Name</TableCell>
161-
<TableCell sx={{ padding: "3px 16px", textAlign: "center" }}>
162-
App Type
163-
</TableCell>
164-
<TableCell sx={{ padding: "3px 16px", textAlign: "center" }}>
165-
Visibility
166-
</TableCell>
167-
<TableCell sx={{ padding: "3px 16px" }}>Processors</TableCell>
168-
<TableCell sx={{ padding: "3px 16px" }}>Delete</TableCell>
159+
<TableRow
160+
sx={{ "& > th": { padding: "3px 16px", fontWeight: 600 } }}
161+
>
162+
<TableCell>App Name</TableCell>
163+
<TableCell sx={{ textAlign: "center" }}>App Type</TableCell>
164+
<TableCell sx={{ textAlign: "center" }}>Visibility</TableCell>
165+
<TableCell>Processors</TableCell>
166+
<TableCell>Delete</TableCell>
169167
</TableRow>
170168
</TableHead>
171169
<TableBody>

0 commit comments

Comments
 (0)