From 5fe5ed98be9289703db17e3342360986cba4421c Mon Sep 17 00:00:00 2001 From: Jason Date: Sat, 20 Dec 2025 16:24:25 +0800 Subject: [PATCH] style(header): unify height and styling of header toolbar sections - Use consistent h-8 fixed height for all inner elements - Standardize border-radius to rounded-xl across all sections - Remove background from ProxyToggle for cleaner appearance - Simplify ProxyToggle structure with nested container --- src/components/AppSwitcher.tsx | 8 ++--- src/components/proxy/ProxyToggle.tsx | 53 ++++++++++++++-------------- 2 files changed, 30 insertions(+), 31 deletions(-) diff --git a/src/components/AppSwitcher.tsx b/src/components/AppSwitcher.tsx index 76c4da5d3..7f2f86d19 100644 --- a/src/components/AppSwitcher.tsx +++ b/src/components/AppSwitcher.tsx @@ -24,11 +24,11 @@ export function AppSwitcher({ activeApp, onSwitch }: AppSwitcherProps) { }; return ( -
+
); }