From b3ffa266dabefa0a50d872505ddb0b7ade3de6b1 Mon Sep 17 00:00:00 2001 From: Michael Han <107991372+shimmyshimmer@users.noreply.github.com> Date: Fri, 12 Jun 2026 04:15:49 -0700 Subject: [PATCH] Studio: login card polish and sidebar label alignment (#6242) Rounder corners and more padding on the login card, a submit button that sizes to its label, and the sidebar chat and run rows nudged 2px left with the section headers brought flush to the row text so the labels line up like Gemini's sidebar. --- studio/frontend/src/components/app-sidebar.tsx | 4 ++-- studio/frontend/src/features/auth/components/auth-form.tsx | 2 +- studio/frontend/src/features/auth/login-page.tsx | 2 +- studio/frontend/src/index.css | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/studio/frontend/src/components/app-sidebar.tsx b/studio/frontend/src/components/app-sidebar.tsx index faa98abeea..41d1b54232 100644 --- a/studio/frontend/src/components/app-sidebar.tsx +++ b/studio/frontend/src/components/app-sidebar.tsx @@ -949,7 +949,7 @@ export function AppSidebar() { - + {recentChatItems.map((item) => renderChatSidebarItem(item, "recent"), @@ -971,7 +971,7 @@ export function AppSidebar() { - + {runItems.map((run) => { // Explicit selection wins. Otherwise highlight the active diff --git a/studio/frontend/src/features/auth/components/auth-form.tsx b/studio/frontend/src/features/auth/components/auth-form.tsx index d109b5f196..f32ef6abcf 100644 --- a/studio/frontend/src/features/auth/components/auth-form.tsx +++ b/studio/frontend/src/features/auth/components/auth-form.tsx @@ -443,7 +443,7 @@ export function AuthForm({ mode }: AuthFormProps): ReactElement | null {