fix(ui): resolve breadcrumb visibility and AI combobox layout issues
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 1m31s

This commit is contained in:
Antigravity
2026-05-10 11:47:10 +00:00
parent 916fb78dfb
commit 890506d0b0
4 changed files with 40 additions and 44 deletions

View File

@@ -420,11 +420,14 @@ export function HomeClient({ initialNotes, initialSettings }: HomeClientProps) {
<div className="flex justify-between items-start">
<div>
{currentNotebook && notebookPath.length > 0 && (
<div className="flex items-center gap-2 text-base font-semibold mb-1">
<div
className="flex items-center gap-2 text-[12px] uppercase tracking-[.2em] font-bold mb-2"
style={{ color: 'var(--color-ink)', opacity: 1 }}
>
{notebookPath.map((nb: any, i: number) => (
<React.Fragment key={nb.id}>
{i > 0 && <ChevronRight size={16} className="text-foreground/40" />}
<span className={i === notebookPath.length - 1 ? 'text-foreground' : 'text-foreground/60'}>
{i > 0 && <ChevronRight size={10} className="shrink-0" style={{ color: 'var(--color-concrete)' }} />}
<span style={{ color: i === notebookPath.length - 1 ? 'var(--color-ink)' : 'var(--color-concrete)' }}>
{nb.name}
</span>
</React.Fragment>