@greatapps/greatagents-ui 0.3.0 → 0.3.1
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
|
@@ -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>
|