style: header, navigation und _app.tsx

This commit is contained in:
ISA
2025-09-10 13:33:23 +02:00
parent 05b416855b
commit 95c884bc07
8 changed files with 19 additions and 11 deletions

View File

@@ -36,8 +36,8 @@ const Navigation: React.FC<NavigationProps> = ({ className }) => {
];
return (
<aside className="h-full bg-[var(--color-surface)] dark:bg-[var(--color-surface)] border-r border-[var(--color-border)]">
<nav className={`h-full flex-shrink-0 mt-16 ${className || "w-48"}`}>
<aside className="h-full bg-[var(--color-surface)] dark:bg-[var(--color-surface)] ">
<nav className={`h-full flex-shrink-0 mt-24 ${className || "w-48"}`}>
{menuItems.map((item) => (
<div key={item.name}>
{item.disabled ? (