Small improvements (#228)

* make the start tag for all agents the same

* remove scroll from the my assistants page
This commit is contained in:
arkml 2025-09-02 22:09:09 +05:30 committed by GitHub
parent 448f94a530
commit 3d36884c73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -207,8 +207,8 @@ const ListItemWithMenu = ({
};
const StartLabel = () => (
<div className="text-xs text-indigo-500 dark:text-indigo-400 bg-indigo-50/50 dark:bg-indigo-950/30 px-1.5 py-0.5 rounded">
Start
<div className="text-xs bg-green-100 dark:bg-green-900/30 text-green-700 dark:text-green-400 px-2 py-0.5 rounded font-medium">
START
</div>
);

View file

@ -21,7 +21,7 @@ const SHOW_PREBUILT_CARDS = process.env.NEXT_PUBLIC_SHOW_PREBUILT_CARDS === 'tru
const ITEMS_PER_PAGE = 6;
const ITEMS_PER_PAGE = 10;
const copilotPrompts = {
"Blog assistant": {
@ -363,7 +363,7 @@ export function BuildAssistantSection() {
</Tab>
<Tab key="existing" title="My Assistants">
<div className="pt-4">
<div className="h-96 flex flex-col bg-white dark:bg-gray-800 rounded-2xl border border-gray-200 dark:border-gray-700 p-4">
<div className="flex flex-col bg-white dark:bg-gray-800 rounded-2xl border border-gray-200 dark:border-gray-700 p-4">
{projectsLoading ? (
<div className="flex items-center justify-center h-full text-sm text-gray-500 dark:text-gray-400">
Loading assistants...
@ -374,7 +374,7 @@ export function BuildAssistantSection() {
</div>
) : (
<>
<div className="flex-1 overflow-y-auto">
<div className="flex-1">
<div className="space-y-2">
{currentProjects.map((project) => (
<Link