fix overflow
This commit is contained in:
parent
5ed43a68ac
commit
45ac95431b
2 changed files with 2 additions and 2 deletions
|
|
@ -5,6 +5,6 @@
|
||||||
let { class: className, children, ...rest }: HTMLAttributes<HTMLDivElement> = $props();
|
let { class: className, children, ...rest }: HTMLAttributes<HTMLDivElement> = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div {...rest} class={cn('bg-background bg-noise fill-device-height col-start-2', className)}>
|
<div {...rest} class={cn('bg-background bg-noise fill-device-height col-start-2 ', className)}>
|
||||||
{@render children?.()}
|
{@render children?.()}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
>
|
>
|
||||||
<AppSidebar bind:searchModalOpen />
|
<AppSidebar bind:searchModalOpen />
|
||||||
|
|
||||||
<Sidebar.Inset class="w-full overflow-clip px-2">
|
<Sidebar.Inset class="w-full min-w-0 overflow-clip px-2">
|
||||||
{#if !sidebarOpen}
|
{#if !sidebarOpen}
|
||||||
<!-- header - top left -->
|
<!-- header - top left -->
|
||||||
<div
|
<div
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue