fix(layout): Anpassung des Layouts für Laptop-Auflösung (1348x635)

- Header und Footer mit festen Höhen (13vh und 8vh) versehen.
- Inhaltsbereich dynamisch skaliert mit calc(100vh - Header - Footer).
- Navigation für volle Höhe des Inhalts angepasst.
- Alle Elemente ohne Scrollen auf Laptop-Auflösung sichtbar gemacht.
This commit is contained in:
ISA
2025-01-23 07:29:41 +01:00
parent 801b2f55da
commit b2eb899793
5 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ function Navigation() {
return (
<aside>
<nav className="w-48 sm:w-12 md:w-28 lg:w-32 xl:w-40 2xl:w-64 flex-shrink-0 mt-32 overflow-hidden">
<nav className="w-48 h-full flex-shrink-0 mt-16">
{menuItems.map((item) => (
<Link href={formatPath(item.path)} key={item.name}>
<div