From 732cd31e1fff7d1b9994e9da2c7e8887b7686241 Mon Sep 17 00:00:00 2001 From: dswbx Date: Fri, 5 Sep 2025 17:24:47 +0200 Subject: [PATCH] ui: fix appshell section tabs styling --- app/src/ui/layouts/AppShell/AppShell.tsx | 39 ++++++++++++++---------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/app/src/ui/layouts/AppShell/AppShell.tsx b/app/src/ui/layouts/AppShell/AppShell.tsx index 3df68ea..8062d8f 100644 --- a/app/src/ui/layouts/AppShell/AppShell.tsx +++ b/app/src/ui/layouts/AppShell/AppShell.tsx @@ -339,10 +339,10 @@ export const SectionHeaderLink = ({ { return ( - -
- {title && ( - {title} - )} -
- {items?.map(({ label, ...item }, key) => ( - - {label} - - ))} -
+
+
+
+ +
+ {title && ( + + {title} + + )} +
+ {items?.map(({ label, ...item }, key) => ( + + {label} + + ))} +
+
+
- +
); };