fix: UI overflowing issues

This commit is contained in:
2025-07-18 16:00:43 +01:00
parent 0d5e6146f2
commit bb3ae507ea
3 changed files with 11 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ import { Component, ParentProps } from "solid-js";
export const AppWrapper: Component<ParentProps> = (props) => {
return (
<div class="w-full flex flex-col items-center h-screen">
<div class="container flex flex-col w-full h-full gap-4 m-4">
<div class="container flex flex-col w-full h-full gap-4 p-4">
{props.children}
</div>
</div>

View File

@@ -5,9 +5,13 @@ import { Dock } from "./dock";
export const WithTopbarAndDock: Component<ParentProps> = (props) => {
return (
<>
<Topbar />
{props.children}
<Dock />
<div class="">
<Topbar />
</div>
<div class="h-full overflow-y-auto">{props.children}</div>
<div class="">
<Dock />
</div>
</>
);
};