@greatapps/greatagents-ui 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@ export function AgentDetailPage({
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
return (
|
|
52
|
-
<div className="flex flex-col gap-6 p-4">
|
|
52
|
+
<div className="flex flex-col gap-6 p-4 md:p-6">
|
|
53
53
|
<div className="rounded-lg border p-4 md:p-6">
|
|
54
54
|
<div className="flex flex-col gap-4 md:flex-row md:items-start md:gap-6">
|
|
55
55
|
<div className="flex items-start gap-3 flex-1">
|
|
@@ -21,7 +21,7 @@ export function AgentsPage({
|
|
|
21
21
|
const [createOpen, setCreateOpen] = useState(false);
|
|
22
22
|
|
|
23
23
|
return (
|
|
24
|
-
<div className="flex flex-col gap-4 p-4">
|
|
24
|
+
<div className="flex flex-col gap-4 p-4 md:p-6">
|
|
25
25
|
<div className="flex items-center justify-between">
|
|
26
26
|
<div>
|
|
27
27
|
<h1 className="text-xl font-semibold">{title}</h1>
|
|
@@ -25,7 +25,7 @@ export function CredentialsPage({
|
|
|
25
25
|
const credentials = credentialsData?.data || [];
|
|
26
26
|
|
|
27
27
|
return (
|
|
28
|
-
<div className="flex flex-col gap-4 p-4">
|
|
28
|
+
<div className="flex flex-col gap-4 p-4 md:p-6">
|
|
29
29
|
<div className="flex items-center justify-between">
|
|
30
30
|
<div>
|
|
31
31
|
<h1 className="text-xl font-semibold">{title}</h1>
|
package/src/pages/tools-page.tsx
CHANGED
|
@@ -21,7 +21,7 @@ export function ToolsPage({
|
|
|
21
21
|
const [editTool, setEditTool] = useState<Tool | undefined>(undefined);
|
|
22
22
|
|
|
23
23
|
return (
|
|
24
|
-
<div className="flex flex-col gap-4 p-4">
|
|
24
|
+
<div className="flex flex-col gap-4 p-4 md:p-6">
|
|
25
25
|
<div className="flex items-center justify-between">
|
|
26
26
|
<div>
|
|
27
27
|
<h1 className="text-xl font-semibold">{title}</h1>
|