Feat: Refine design language and use theme tokens across most pages.

This commit is contained in:
simosmik
2026-02-16 13:17:47 +00:00
parent 42f13e151c
commit afe1be7fca
21 changed files with 1209 additions and 880 deletions

View File

@@ -49,7 +49,7 @@ export default function SidebarContent({
}: SidebarContentProps) {
return (
<div
className="h-full flex flex-col bg-card md:select-none md:w-80"
className="h-full flex flex-col bg-background/80 backdrop-blur-sm md:select-none md:w-72"
style={isPWA && isMobile ? { paddingTop: '44px' } : {}}
>
<SidebarHeader
@@ -67,7 +67,7 @@ export default function SidebarContent({
t={t}
/>
<ScrollArea className="flex-1 md:px-2 md:py-3 overflow-y-auto overscroll-contain">
<ScrollArea className="flex-1 md:px-1.5 md:py-2 overflow-y-auto overscroll-contain">
<SidebarProjectList {...projectListProps} />
</ScrollArea>