Started improving the responsiveness of the application

This commit is contained in:
Tiago Ribeiro
2023-10-16 23:52:41 +01:00
parent aaa7d6deb3
commit 550cdba5a7
5 changed files with 264 additions and 129 deletions

View File

@@ -19,13 +19,12 @@ export default function Layout({user, children, className, navDisabled = false,
return (
<main className="w-full min-h-full h-screen flex flex-col bg-mti-gray-smoke relative">
<Navbar user={user} navDisabled={navDisabled} focusMode={focusMode} onFocusLayerMouseEnter={onFocusLayerMouseEnter} />
<BottomBar
<Navbar
path={router.pathname}
user={user}
navDisabled={navDisabled}
focusMode={focusMode}
onFocusLayerMouseEnter={onFocusLayerMouseEnter}
className="lg:hidden absolute bottom-0 left-0 w-full z-20"
/>
<div className="h-full w-full flex gap-2">
<Sidebar
@@ -33,12 +32,12 @@ export default function Layout({user, children, className, navDisabled = false,
navDisabled={navDisabled}
focusMode={focusMode}
onFocusLayerMouseEnter={onFocusLayerMouseEnter}
className="-lg:hidden"
className="-md:hidden"
showAdmin={user.type !== "student"}
/>
<div
className={clsx(
"w-full min-h-full h-fit lg:mr-8 bg-white shadow-md rounded-2xl p-12 pb-8 flex flex-col gap-12 relative overflow-hidden mt-2",
"w-full min-h-full h-fit lg:mr-8 bg-white shadow-md rounded-2xl p-4 md:p-12 pb-8 flex flex-col gap-8 md:gap-12 relative overflow-hidden mt-2",
className,
)}>
{children}